diff --git a/ChangeLog b/ChangeLog index 4c6650a97..296d4ba16 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,10 @@ phpMyAdmin - Changelog $Id$ $Source$ +2003-10-27 Marc Delisle + * querywindow.php3: bug 825668: js errors in SQL-history, + thanks to Jenik Kaspar (jenix) + 2003-10-26 Marc Delisle * libraries/display_tbl.lib.php3: bug 830437, undefined $sql_order * querywindow.php3: bug 829737, cosmetic change: added   for diff --git a/querywindow.php3 b/querywindow.php3 index bb2eb2895..2aea8d3a5 100644 --- a/querywindow.php3 +++ b/querywindow.php3 @@ -160,8 +160,8 @@ if ($cfg['QueryFrame'] && $cfg['QueryFrameJS']) { $input_query_history[] = ''; $sql_history[] = '
  • ' - . '' . $titles['Change'] . '' - . '[' . htmlspecialchars($query_history_latest_db) . '] ' . urldecode($query_history_latest) . '' + . '' . $titles['Change'] . '' + . '[' . htmlspecialchars($query_history_latest_db) . '] ' . urldecode($query_history_latest) . '' . '
  • ' . "\n"; $sql_query = urldecode($query_history_latest); @@ -184,8 +184,8 @@ if ($cfg['QueryFrame'] && $cfg['QueryFrameJS']) { while(@list($history_nr, $history_array) = @each($temp_history)) { if (!isset($dup_sql[$history_array['sqlquery']])) { $sql_history[] = '
  • ' - . '' . $titles['Change'] . '' - . '[' . htmlspecialchars($history_array['db']) . '] ' . urldecode($history_array['sqlquery']) . '' + . '' . $titles['Change'] . '' + . '[' . htmlspecialchars($history_array['db']) . '] ' . urldecode($history_array['sqlquery']) . '' . '
  • ' . "\n"; $dup_sql[$history_array['sqlquery']] = true; }