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:
@@ -1084,7 +1084,7 @@ class workspaceTools
|
|||||||
mysql_select_db($database);
|
mysql_select_db($database);
|
||||||
$script = file_get_contents($filename);
|
$script = file_get_contents($filename);
|
||||||
|
|
||||||
$lines = explode(";\n", $script);
|
$lines = explode("\n", $script);
|
||||||
$previous = null;
|
$previous = null;
|
||||||
foreach ($lines as $j => $line) {
|
foreach ($lines as $j => $line) {
|
||||||
// Remove comments from the script
|
// Remove comments from the script
|
||||||
|
|||||||
Reference in New Issue
Block a user