Merge remote-tracking branch 'origin/QA_3_5' into QA_3_5

This commit is contained in:
Michal Čihař 2012-04-27 22:26:19 +02:00
commit e0bb59bef1
2 changed files with 5 additions and 1 deletions

View File

@ -3,6 +3,7 @@ phpMyAdmin - ChangeLog
3.5.2.0 (not yet released)
- bug #3521416 [interface] JS error when editing index
- bug #3521313 [core] Call to undefined function __()
3.5.1.0 (not yet released)
- bug #3510784 [edit] Limit clause ignored when sort order is remembered

View File

@ -724,7 +724,10 @@ class PMA_Config
if (! is_readable($this->getSource())) {
$this->source_mtime = 0;
die(
sprintf(__('Existing configuration file (%s) is not readable.'),
sprintf(
function_exists('__')
? __('Existing configuration file (%s) is not readable.')
: 'Existing configuration file (%s) is not readable.',
$this->getSource()
)
);