bug 859062

This commit is contained in:
Marc Delisle
2003-12-15 18:11:43 +00:00
parent 481fb09b56
commit b469f62e64
2 changed files with 5 additions and 1 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2003-12-15 Marc Delisle <lem9@users.sourceforge.net>
* read_dump.php: bug 859062: Go & Bookmark problem when the
query has a character like "+" in it
2003-12-13 Marc Delisle <lem9@users.sourceforge.net> 2003-12-13 Marc Delisle <lem9@users.sourceforge.net>
* tbl_query_box.php, ldi_table.php: maximum upload size * tbl_query_box.php, ldi_table.php: maximum upload size
* tbl_change.php: max BLOB upload size * tbl_change.php: max BLOB upload size

View File

@@ -164,7 +164,7 @@ if (isset($SQLbookmark) && $sql_query != '') {
$bfields = array( $bfields = array(
'dbase' => $db, 'dbase' => $db,
'user' => $cfg['Bookmark']['user'], 'user' => $cfg['Bookmark']['user'],
'query' => $sql_query, 'query' => urlencode($sql_query),
'label' => $bkm_label 'label' => $bkm_label
); );