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-06 16:01:07 +0300
committerMarc Delisle <marc@infomarc.info>2015-12-06 16:01:07 +0300
commit66c15daba0a4a34e108cb01a852b9171ae0f51ab (patch)
treef9e674706324b80f9d580b75825b084a5b5b4c4f /examples
parent3dcb36b4caa04bcf313ef95e7ccfce6acf06e3fe (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 'examples')
-rw-r--r--examples/openid.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/openid.php b/examples/openid.php
index f186758993..e402d4e26d 100644
--- a/examples/openid.php
+++ b/examples/openid.php
@@ -53,7 +53,7 @@ function Show_page($contents)
<body>
<?php
if (isset($_SESSION) && isset($_SESSION['PMA_single_signon_error_message'])) {
- echo '<p class="error">' . $_SESSION['PMA_single_signon_message'] . '</p>';
+ echo '<p class="error">' , $_SESSION['PMA_single_signon_message'] , '</p>';
unset($_SESSION['PMA_single_signon_message']);
}
echo $contents;