BUG-13398 Cambiando explode con valor por defecto IMPROVEMENT

- en la funcion executeSQLScript se añadio por error el ";" del explode.
This commit is contained in:
Marco Antonio Nina
2013-10-28 13:53:03 -04:00
parent 64a70f0a29
commit 79334d8463

View File

@@ -1084,7 +1084,7 @@ class workspaceTools
mysql_select_db($database);
$script = file_get_contents($filename);
$lines = explode(";\n", $script);
$lines = explode("\n", $script);
$previous = null;
foreach ($lines as $j => $line) {
// Remove comments from the script