diff --git a/user_details.php3 b/user_details.php3 index 3860ada20..178c2d713 100644 --- a/user_details.php3 +++ b/user_details.php3 @@ -240,10 +240,25 @@ function PMA_checkDb($dbcheck) * * @return boolean always true * + * @global integer whether all/none of the privileges have to be checked or + * not + * * @see PMA_normalOperations() */ function PMA_tablePrivileges($form, $row = FALSE) { + global $checkpriv; + + $checkpriv_url = $GLOBALS['cfgPmaAbsoluteUri'] + . 'user_details.php3?'; + if (empty($GLOBALS['QUERY_STRING'])) { + $GLOBALS['QUERY_STRING'] = (isset($_SERVER)) + ? $_SERVER['QUERY_STRING'] + : $GLOBALS['HTTP_SERVER_VARS']['QUERY_STRING']; + } + if (!empty($GLOBALS['QUERY_STRING'])) { + $checkpriv_url .= $GLOBALS['QUERY_STRING'] . '&'; + } ?>
- + | - + |