mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
sprintf arguments mixed up
This commit is contained in:
parent
a8f9cf787b
commit
0875b84fa6
1 changed files with 1 additions and 1 deletions
|
@ -147,7 +147,7 @@ class FileLog extends BaseLog {
|
|||
$selfError = true;
|
||||
trigger_error(__d(
|
||||
'cake_dev', 'Could not apply permission mask "%s" on log file "%s"',
|
||||
array($pathname, $this->_config['mask'])), E_USER_WARNING);
|
||||
array($this->_config['mask'], $pathname)), E_USER_WARNING);
|
||||
$selfError = false;
|
||||
}
|
||||
return $result;
|
||||
|
|
Loading…
Reference in a new issue