Task 4111: remove debug info

This commit is contained in:
sparkyx 2005-05-07 21:10:36 +00:00
parent 3cc8a04136
commit bc02498c4f

View file

@ -114,13 +114,11 @@ function ExecuteScript($p_cn,$script) {
// No semi colon -> multiline command
if ( strpos($buffer,';') == false ) {
$sql.=$buffer;
echo "<color=red> $buffer</color>";
continue;
}
// cut the semi colon
$buffer=str_replace (';','',$buffer);
$sql.=$buffer;
// print "Execute $sql <hr>";
ExecSql($p_cn,$sql);
$sql="";
} // while (feof)