Merge remote-tracking branch 'origin/QA_3_5' into QA_3_5
This commit is contained in:
commit
e0bb59bef1
@ -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
|
||||
|
||||
@ -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()
|
||||
)
|
||||
);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user