diff --git a/db_readdump.php3 b/db_readdump.php3 index 8f524d308..61a192e34 100755 --- a/db_readdump.php3 +++ b/db_readdump.php3 @@ -21,6 +21,10 @@ if (count($pieces) == 1 && !empty($pieces[0])) { } else { $sql_query = trim($pieces[0]); } + // Enforce reloading of the left frame when a table has to be created + if (eregi('^CREATE TABLE (.+)', $sql_query)) { + $reload = "true"; + } include ("sql.php3"); exit; }