diff --git a/user_details.php3 b/user_details.php3 index 5fe2f02e33..76bbd6708b 100644 --- a/user_details.php3 +++ b/user_details.php3 @@ -32,13 +32,13 @@ $err_url = 'user_details.php3' * @global integer the server to use (refers to the number in the * configuration file) * - * @see check_db() + * @see checkDb() * * @TODO "SHOW GRANTS" statements is available and buggyless since * MySQL 3.23.4 and it seems not to return privileges of the anonymous * user while these privileges applies to all users. */ -function table_grants(&$host_db_result, $dbcheck = FALSE) { +function tableGrants(&$host_db_result, $dbcheck = FALSE) { global $lang, $server; ?> @@ -200,7 +200,7 @@ function table_grants(&$host_db_result, $dbcheck = FALSE) { echo "\n"; return TRUE; -} // end of the 'table_grants()' function +} // end of the 'tableGrants()' function /** @@ -210,9 +210,9 @@ function table_grants(&$host_db_result, $dbcheck = FALSE) { * * @return boolean true/false in case of success/failure * - * @see table_grants() + * @see tableGrants() */ -function check_db($dbcheck) +function checkDb($dbcheck) { $local_query = 'SELECT Host, User FROM mysql.user ORDER BY Host, User'; $result = mysql_query($local_query); @@ -221,10 +221,10 @@ function check_db($dbcheck) if (!$host_usr_cnt) { return FALSE; } - table_grants($result, $dbcheck); + tableGrants($result, $dbcheck); return TRUE; -} // end of the 'check_db()' function +} // end of the 'checkDb()' function /** @@ -235,9 +235,9 @@ function check_db($dbcheck) * * @return boolean always true * - * @see normal_operations() + * @see normalOperations() */ -function table_privileges($form, $row = FALSE) +function tablePrivileges($form, $row = FALSE) { ?> @@ -286,7 +286,7 @@ function table_privileges($form, $row = FALSE) echo "\n"; return TRUE; -} // end of the 'table_privileges()' function +} // end of the 'tablePrivileges()' function /** @@ -298,9 +298,9 @@ function table_privileges($form, $row = FALSE) * @global integer the server to use (refers to the number in the * configuration file) * - * @see table_privileges() + * @see tablePrivileges() */ -function normal_operations() +function normalOperations() { global $lang, $server; ?> @@ -403,7 +403,7 @@ function normal_operations() @@ -415,7 +415,7 @@ function normal_operations() @@ -594,7 +594,7 @@ function grant_operations($grants) echo "\n"; return TRUE; -} // end of the 'grant_operations()' function +} // end of the 'grantOperations()' function /** @@ -611,9 +611,9 @@ function grant_operations($grants) * @global string the host name to check grants for * @global string the username to check grants for * - * @see table_privileges() + * @see tablePrivileges() */ -function edit_operations($host, $user) +function editOperations($host, $user) { global $lang, $server; global $host, $pma_user; @@ -709,7 +709,7 @@ function edit_operations($host, $user)