Skip to content

Commit

Permalink
Merge pull request #147 from lem9/bug-3786
Browse files Browse the repository at this point in the history
Bug #3786 PHP error when dropping user
  • Loading branch information
nijel committed Jan 28, 2013
2 parents cc4c7a0 + eba6aad commit b202e8c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions server_privileges.php
Expand Up @@ -379,9 +379,12 @@
&& ! 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) {
Expand Down

0 comments on commit b202e8c

Please sign in to comment.