Skip to content

Commit

Permalink
Minor bug due to which the ajax response to revoke users was failing.…
Browse files Browse the repository at this point in the history
… Fixed it
  • Loading branch information
ninadsp committed Jul 22, 2010
1 parent 4054332 commit 13ec142
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion server_privileges.php
Original file line number Diff line number Diff line change
Expand Up @@ -1278,7 +1278,10 @@ function PMA_displayLoginInformationFields($mode = 'new')
if (isset($_REQUEST['drop_users_db'])) {
$queries[] = 'DROP DATABASE IF EXISTS ' . PMA_backquote($this_user) . ';';
$GLOBALS['reload'] = TRUE;
PMA_reloadNavigation();

if($GLOBALS['is_ajax_request'] != true) {
PMA_reloadNavigation();
}
}
}
if (empty($_REQUEST['change_copy'])) {
Expand Down

0 comments on commit 13ec142

Please sign in to comment.