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:
authorMichal Čihař <michal@cihar.com>2017-11-27 10:57:17 +0300
committerMichal Čihař <michal@cihar.com>2017-11-27 10:59:36 +0300
commitf7e6366d016c2624f1690a84bff6dfa6ad4ea178 (patch)
treed065350ec11655e3fe4f67212ecb7df6ac708700 /prefs_manage.php
parent7fb7757aafc8fc24d0b37732a1e954a81a9d0f10 (diff)
Use correct name for motranslator call
We're not using php gettext, so using _ is mistake. Issue #13436 Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'prefs_manage.php')
-rw-r--r--prefs_manage.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/prefs_manage.php b/prefs_manage.php
index 5341201bbd..aaee32dda1 100644
--- a/prefs_manage.php
+++ b/prefs_manage.php
@@ -49,8 +49,8 @@ if (isset($_POST['submit_export'])
$filename = 'phpMyAdmin-config-' . urlencode(PMA_getenv('HTTP_HOST')) . '.php';
PMA_downloadHeader($filename, 'application/php');
$settings = PMA_loadUserprefs();
- echo '/* ' . _('phpMyAdmin configuration snippet') . " */\n\n";
- echo '/* ' . _('Paste it to your config.inc.php') . " */\n\n";
+ echo '/* ' . __('phpMyAdmin configuration snippet') . " */\n\n";
+ echo '/* ' . __('Paste it to your config.inc.php') . " */\n\n";
foreach ($settings['config_data'] as $key => $val) {
echo '$cfg[\'' . str_replace('/', '\'][\'', $key) . '\'] = ';
echo var_export($val, true) . ";\n";