Fix for wrong 'cake_dev' i18n domain param.

This commit is contained in:
Majna 2011-08-09 16:24:41 +02:00
parent eb7567d33e
commit 48e681424f

View file

@ -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);
}
}
}