diff --git a/pandora_console/godmode/um_client/lib/UpdateManager/Client.php b/pandora_console/godmode/um_client/lib/UpdateManager/Client.php index 3f76de4405..18ad02720c 100644 --- a/pandora_console/godmode/um_client/lib/UpdateManager/Client.php +++ b/pandora_console/godmode/um_client/lib/UpdateManager/Client.php @@ -941,7 +941,7 @@ class Client $queries = preg_split("/(;\n)|(;\n\r)/", $sql); foreach ($queries as $query) { if (empty($query) !== true) { - if (preg_match('/^\s*LOAD\s+(.*)$/i', $query, $matches) > 0) { + if (preg_match('/^\s*SOURCE\s+(.*)$/i', $query, $matches) > 0) { $filepath = dirname($mr_file).'/'.$matches[1]; if (file_exists($filepath) === true) { $query = file_get_contents($filepath);