Merge pull request #147 from lem9/bug-3786

Bug #3786 PHP error when dropping user
This commit is contained in:
Michal Čihař 2013-01-27 23:17:33 -08:00
commit b202e8c5dc

View File

@ -379,9 +379,12 @@ if ($GLOBALS['is_ajax_request']
&& ! isset($_REQUEST['db_specific'])
) {
$extra_data = PMA_getExtraDataForAjaxBehavior(
(isset ($password) ? $password : ''), $link_export,
(isset($password) ? $password : ''),
$link_export,
(isset($sql_query) ? $sql_query : ''),
$link_edit, $hostname, $username
$link_edit,
(isset($hostname) ? $hostname : ''),
(isset($username) ? $username : '')
);
if (! empty($message) && $message instanceof PMA_Message) {