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 /prefs_manage.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 'prefs_manage.php')
-rw-r--r--prefs_manage.php50
1 files changed, 25 insertions, 25 deletions
diff --git a/prefs_manage.php b/prefs_manage.php
index bee420fb8b..5491bc6724 100644
--- a/prefs_manage.php
+++ b/prefs_manage.php
@@ -238,31 +238,31 @@ PMA_printJsValue("PMA_messages['strSavedOn']", __('Saved on: @DATE@'));
<div id="main_pane_left">
<div class="group">
<?php
-echo '<h2>' . __('Import') . '</h2>'
- . '<form class="group-cnt prefs-form disableAjax" name="prefs_import"'
- . ' action="prefs_manage.php" method="post" enctype="multipart/form-data">'
- . Util::generateHiddenMaxFileSize($GLOBALS['max_upload_size'])
- . PMA_URL_getHiddenInputs()
- . '<input type="hidden" name="json" value="" />'
- . '<input type="radio" id="import_text_file" name="import_type"'
- . ' value="text_file" checked="checked" />'
- . '<label for="import_text_file">' . __('Import from file') . '</label>'
- . '<div id="opts_import_text_file" class="prefsmanage_opts">'
- . '<label for="input_import_file">' . __('Browse your computer:') . '</label>'
- . '<input type="file" name="import_file" id="input_import_file" />'
- . '</div>'
- . '<input type="radio" id="import_local_storage" name="import_type"'
- . ' value="local_storage" disabled="disabled" />'
- . '<label for="import_local_storage">'
- . __('Import from browser\'s storage') . '</label>'
- . '<div id="opts_import_local_storage" class="prefsmanage_opts disabled">'
- . '<div class="localStorage-supported">'
- . __('Settings will be imported from your browser\'s local storage.')
- . '<br />'
- . '<div class="localStorage-exists">'
- . __('Saved on: @DATE@')
- . '</div>'
- . '<div class="localStorage-empty">';
+echo '<h2>' , __('Import') , '</h2>'
+ , '<form class="group-cnt prefs-form disableAjax" name="prefs_import"'
+ , ' action="prefs_manage.php" method="post" enctype="multipart/form-data">'
+ , Util::generateHiddenMaxFileSize($GLOBALS['max_upload_size'])
+ , PMA_URL_getHiddenInputs()
+ , '<input type="hidden" name="json" value="" />'
+ , '<input type="radio" id="import_text_file" name="import_type"'
+ , ' value="text_file" checked="checked" />'
+ , '<label for="import_text_file">' . __('Import from file') . '</label>'
+ , '<div id="opts_import_text_file" class="prefsmanage_opts">'
+ , '<label for="input_import_file">' , __('Browse your computer:') , '</label>'
+ , '<input type="file" name="import_file" id="input_import_file" />'
+ , '</div>'
+ , '<input type="radio" id="import_local_storage" name="import_type"'
+ , ' value="local_storage" disabled="disabled" />'
+ , '<label for="import_local_storage">'
+ , __('Import from browser\'s storage') , '</label>'
+ , '<div id="opts_import_local_storage" class="prefsmanage_opts disabled">'
+ , '<div class="localStorage-supported">'
+ , __('Settings will be imported from your browser\'s local storage.')
+ , '<br />'
+ , '<div class="localStorage-exists">'
+ , __('Saved on: @DATE@')
+ , '</div>'
+ , '<div class="localStorage-empty">';
Message::notice(__('You have no saved settings!'))->display();
echo '</div>'
, '</div>'