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-03 19:00:01 +0300
committerMarc Delisle <marc@infomarc.info>2015-12-03 19:00:01 +0300
commit260702328169a0f30d3767fed418b0a75734e8e0 (patch)
treedd0258065a70d2439b72aca2f24efd1e4fd63a0a /prefs_manage.php
parentbc5c8e4d2b8caf315a9241dfaf363b5610c7abef (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 'prefs_manage.php')
-rw-r--r--prefs_manage.php22
1 files changed, 11 insertions, 11 deletions
diff --git a/prefs_manage.php b/prefs_manage.php
index 326786ff2a..bee420fb8b 100644
--- a/prefs_manage.php
+++ b/prefs_manage.php
@@ -265,21 +265,21 @@ echo '<h2>' . __('Import') . '</h2>'
. '<div class="localStorage-empty">';
Message::notice(__('You have no saved settings!'))->display();
echo '</div>'
- . '</div>'
- . '<div class="localStorage-unsupported">';
+ , '</div>'
+ , '<div class="localStorage-unsupported">';
Message::notice(
__('This feature is not supported by your web browser')
)->display();
echo '</div>'
- . '</div>'
- . '<input type="checkbox" id="import_merge" name="import_merge" />'
- . '<label for="import_merge">'
- . __('Merge with current configuration') . '</label>'
- . '<br /><br />'
- . '<input type="submit" name="submit_import" value="'
- . __('Go') . '" />'
- . '</form>'
- . '</div>';
+ , '</div>'
+ , '<input type="checkbox" id="import_merge" name="import_merge" />'
+ , '<label for="import_merge">'
+ , __('Merge with current configuration') . '</label>'
+ , '<br /><br />'
+ , '<input type="submit" name="submit_import" value="'
+ , __('Go') . '" />'
+ , '</form>'
+ , '</div>';
if (file_exists('setup/index.php')) {
// show only if setup script is available, allows to disable this message
// by simply removing setup directory