undefined index $disp_query
This commit is contained in:
parent
7c876edcb5
commit
309cce5fdb
@ -5,6 +5,10 @@ phpMyAdmin - Changelog
|
||||
$Id$
|
||||
$Source$
|
||||
|
||||
2003-07-07 Garvin Hicking <me@supergarv.de>
|
||||
* tbl_change.php3: Fix undefined index for disp_query
|
||||
(when inserting a new row with a file uploaded to a column)
|
||||
|
||||
2003-07-07 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* libraries/auth/cookie.auth.lib.php3, config.inc.php3, user_password.php3,
|
||||
Documentation.html: only one blowfish secret is necessary for
|
||||
|
||||
@ -21,7 +21,7 @@ if (!empty($disp_message)) {
|
||||
$goto = 'tbl_properties.php3?'
|
||||
. PMA_generate_common_url($db, $table)
|
||||
. '&$show_query=1'
|
||||
. '&sql_query=' . urlencode($disp_query);
|
||||
. '&sql_query=' . (isset($disp_query) ? urlencode($disp_query) : '');
|
||||
} else {
|
||||
$show_query = '1';
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user