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:
authorHugues Peccatte <hugues.peccatte@gmail.com>2015-07-22 23:08:24 +0300
committerHugues Peccatte <hugues.peccatte@gmail.com>2015-07-22 23:08:24 +0300
commita1cf9a24e35f7c44444eb65bc88a95d695bfb9e1 (patch)
tree2fce48d00c86002d89148a7b8d0462fc3ff1d5c6 /user_password.php
parent86a4c3e32dcc2caea0d0f8a680fcf528a5f400a0 (diff)
Coding style modification.
Make PHPCS happy. Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
Diffstat (limited to 'user_password.php')
-rw-r--r--user_password.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/user_password.php b/user_password.php
index fc834cf051..4a42926406 100644
--- a/user_password.php
+++ b/user_password.php
@@ -182,7 +182,8 @@ function PMA_changePassUrlParamsAndSubmitQuery(
} else {
$local_query = 'SET password = ' . (($password == '')
? '\'\''
- : $hashing_function . '(\'' . PMA_Util::sqlAddSlashes($password) . '\')');
+ : $hashing_function . '(\'' . PMA_Util::sqlAddSlashes($password)
+ . '\')');
}
if (! @$GLOBALS['dbi']->tryQuery($local_query)) {
PMA_Util::mysqlDie($GLOBALS['dbi']->getError(), $sql_query, false, $err_url);