We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a2a260b + 8ccfd3c commit 2fd6e18Copy full SHA for 2fd6e18
phpgsb.class.php
@@ -6,7 +6,6 @@
6
Copyright (c) 2010-2012, Sam Cleaver (Beaver6813, Beaver6813.com)
7
All rights reserved.
8
*/
9
-ob_start();
10
class phpGSB
11
{
12
var $apikey = "";
@@ -84,9 +83,10 @@ function outputmsg($msg)
84
83
85
if($this->verbose)
86
+ ob_start();
87
echo $msg.'...<br/>';
88
$this->ob .= ob_get_contents();
89
- ob_flush();
+ ob_end_flush();
90
}
91
92
/*Function to output errors, used instead of echo,
@@ -96,6 +96,7 @@ function fatalerror($msg)
96
97
98
99
100
print_r($msg);
101
echo '...<br/>';
102
@@ -1401,4 +1402,3 @@ function doLookup($url)
1401
1402
1403
1404
-?>
0 commit comments