Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <mcihar@suse.cz>2013-08-06 18:04:11 +0400
committerMichal Čihař <mcihar@suse.cz>2013-08-06 18:04:11 +0400
commitbf8bb147e400b129aa870e9e0686a96337d70bfc (patch)
tree46480e7030c4dfe0ad96d9b5e45fbb8c347d98bd /user_password.php
parent9c141ee6076839ec67169d6296a616bdf96f91db (diff)
Various coding style fixes
Diffstat (limited to 'user_password.php')
-rw-r--r--user_password.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/user_password.php b/user_password.php
index 252302bda8..6e9c4c8a77 100644
--- a/user_password.php
+++ b/user_password.php
@@ -68,8 +68,8 @@ exit;
/**
* Send the message as an ajax request
*
- * @param array $change_password_message
- * @param string $sql_query
+ * @param array $change_password_message Message to display
+ * @param string $sql_query SQL query executed
*
* @return void
*/
@@ -120,9 +120,9 @@ function PMA_setChangePasswordMsg()
/**
* Change the password
*
- * @param string $password
- * @param string $message
- * @param array $change_password_message
+ * @param string $password
+ * @param string $message
+ * @param array $change_password_message Message to show
*
* @return void
*/
@@ -133,7 +133,7 @@ function PMA_changePassword($password, $message, $change_password_message)
$hashing_function = PMA_changePassHashingFunction();
$sql_query = 'SET password = '
. (($password == '') ? '\'\'' : $hashing_function . '(\'***\')');
- PMA_ChangePassUrlParamsAndSubmitQuery(
+ PMA_changePassUrlParamsAndSubmitQuery(
$password, $_url_params, $sql_query, $hashing_function
);
@@ -167,7 +167,7 @@ function PMA_changePassHashingFunction()
*
* @return void
*/
-function PMA_ChangePassUrlParamsAndSubmitQuery(
+function PMA_changePassUrlParamsAndSubmitQuery(
$password, $_url_params, $sql_query, $hashing_function
) {
$err_url = 'user_password.php' . PMA_generate_common_url($_url_params);