Skip to content

Commit

Permalink
sprintf arguments mixed up
Browse files Browse the repository at this point in the history
  • Loading branch information
remidewitte committed Mar 12, 2013
1 parent a8f9cf7 commit 0875b84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Log/Engine/FileLog.php
Expand Up @@ -147,7 +147,7 @@ public function write($type, $message) {
$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;
Expand Down

0 comments on commit 0875b84

Please sign in to comment.