diff --git a/libraries/dbi/DBIMysqli.php b/libraries/dbi/DBIMysqli.php index 0c9d5ca02b73..acc893ab6a18 100644 --- a/libraries/dbi/DBIMysqli.php +++ b/libraries/dbi/DBIMysqli.php @@ -157,7 +157,7 @@ public function connect( (($error_number == 2001 || $error_number == 9002) && stripos($error_message, 'SSL Connection is required') !== false)) ) { trigger_error( - _('SSL connection enforced by server, automatically enabling it.'), + __('SSL connection enforced by server, automatically enabling it.'), E_USER_WARNING ); $server['ssl'] = true; diff --git a/prefs_manage.php b/prefs_manage.php index 5341201bbddd..aaee32dda10e 100644 --- a/prefs_manage.php +++ b/prefs_manage.php @@ -49,8 +49,8 @@ $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";