mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fix for wrong 'cake_dev' i18n domain param.
This commit is contained in:
parent
eb7567d33e
commit
48e681424f
1 changed files with 1 additions and 1 deletions
|
@ -368,7 +368,7 @@ class Folder {
|
|||
if (@chmod($fullpath, intval($mode, 8))) {
|
||||
$this->__messages[] = __d('cake_dev', '%s changed to %s', $fullpath, $mode);
|
||||
} else {
|
||||
$this->__errors[] = __d('cake_deverloper', '%s NOT changed to %s', $fullpath, $mode);
|
||||
$this->__errors[] = __d('cake_dev', '%s NOT changed to %s', $fullpath, $mode);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue