bug 1667466, undefined variable when export + save on server
This commit is contained in:
@@ -5,6 +5,10 @@ phpMyAdmin - ChangeLog
|
|||||||
$Id$
|
$Id$
|
||||||
$HeadURL$
|
$HeadURL$
|
||||||
|
|
||||||
|
2007-02-25 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
|
* libraries/common.lib.php: bug #1667466, undefined variable when
|
||||||
|
export + save on server
|
||||||
|
|
||||||
2007-02-24 Marc Delisle <lem9@users.sourceforge.net>
|
2007-02-24 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* libraries/config.default.php: RFE #1621437, HEX and UNHEX were not
|
* libraries/config.default.php: RFE #1621437, HEX and UNHEX were not
|
||||||
available for a BINARY field
|
available for a BINARY field
|
||||||
|
@@ -1185,8 +1185,11 @@ if (typeof(window.parent) != 'undefined'
|
|||||||
$sql_query = $GLOBALS['display_query'];
|
$sql_query = $GLOBALS['display_query'];
|
||||||
} elseif ($cfg['SQP']['fmtType'] == 'none' && ! empty($GLOBALS['unparsed_sql'])) {
|
} elseif ($cfg['SQP']['fmtType'] == 'none' && ! empty($GLOBALS['unparsed_sql'])) {
|
||||||
$sql_query = $GLOBALS['unparsed_sql'];
|
$sql_query = $GLOBALS['unparsed_sql'];
|
||||||
} else {
|
// could be empty, for example export + save on server
|
||||||
|
} elseif (! empty($GLOBALS['sql_query'])) {
|
||||||
$sql_query = $GLOBALS['sql_query'];
|
$sql_query = $GLOBALS['sql_query'];
|
||||||
|
} else {
|
||||||
|
$sql_query = '';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user