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:
authorMarc Delisle <marc@infomarc.info>2015-12-04 17:05:42 +0300
committerMarc Delisle <marc@infomarc.info>2015-12-04 17:05:42 +0300
commit357b1b4757316360e288d68fb90a6496bf621181 (patch)
tree3a128111ce6bc7a58c36b24485e99e039d54f70d /user_password.php
parent4f2311e1a66b9e1fbb160e1932ab731231550d5a (diff)
Remove some unnecessary string concatenations
https://github.com/dseguy/clearPHP/blob/master/rules/no-unnecessary-string-concatenation.md Signed-off-by: Marc Delisle <marc@infomarc.info>
Diffstat (limited to 'user_password.php')
-rw-r--r--user_password.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/user_password.php b/user_password.php
index 380cf29727..3ee86f2550 100644
--- a/user_password.php
+++ b/user_password.php
@@ -283,12 +283,12 @@ function PMA_changePassUrlParamsAndSubmitQuery(
*/
function PMA_changePassDisplayPage($message, $sql_query)
{
- echo '<h1>' . __('Change password') . '</h1>' . "\n\n";
+ echo '<h1>' , __('Change password') , '</h1>' , "\n\n";
echo PMA\libraries\Util::getMessage(
$message, $sql_query, 'success'
);
- echo '<a href="index.php' . PMA_URL_getCommon()
- . ' target="_parent">' . "\n"
- . '<strong>' . __('Back') . '</strong></a>';
+ echo '<a href="index.php' , PMA_URL_getCommon()
+ , ' target="_parent">' , "\n"
+ , '<strong>' , __('Back') , '</strong></a>';
exit;
}