diff --git a/ChangeLog b/ChangeLog index 857d0cf5c..74260ae4b 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - Changelog $Id$ $Source$ +2004-08-16 Michal Čihař + * read_dump.php: Fix handling of comments -- and # (bug #1009494). + 2004-08-15 Marc Delisle (Patches from Michael Keck) * left.php, queryframe.php, themes.php: bug #1005479: was using diff --git a/read_dump.php b/read_dump.php index 31d7d86d9..ab976a184 100644 --- a/read_dump.php +++ b/read_dump.php @@ -241,7 +241,7 @@ if ($sql_query != '') { if ($pieces_count == 1 && !empty($pieces[0]['query'])) { $sql_query = $pieces[0]['query']; // .*? bellow is non greedy expansion, just in case somebody wants to understand it... - if (preg_match('@^((-- |#)^[\n]*|/\*.*?\*/)*(DROP|CREATE)[[:space:]]+(IF EXISTS[[:space:]]+)?(TABLE|DATABASE)[[:space:]]+(.+)@i', $sql_query)) { + if (preg_match('@^((-- |#)[^\n]*\n|/\*.*?\*/)*(DROP|CREATE)[[:space:]]+(IF EXISTS[[:space:]]+)?(TABLE|DATABASE)[[:space:]]+(.+)@i', $sql_query)) { $reload = 1; } require('./sql.php'); @@ -261,7 +261,8 @@ if ($sql_query != '') { $a_sql_query = $pieces[$i]['query']; // .*? bellow is non greedy expansion, just in case somebody wants to understand it... - if ($i == $count - 1 && preg_match('@^((-- |#)^[\n]*|/\*.*?\*/)*(SELECT|SHOW)@i', $a_sql_query)) { + echo "
$a_sql_query
"; + if ($i == $count - 1 && preg_match('@^((-- |#)[^\n]*\n|/\*.*?\*/)*(SELECT|SHOW)@i', $a_sql_query)) { $complete_query = $sql_query; $display_query = $sql_query; $sql_query = $a_sql_query;