fix messages

This commit is contained in:
yuri
2015-04-03 11:58:58 +03:00
parent 53529fc506
commit f218de2e04
2 changed files with 4 additions and 4 deletions
@@ -551,7 +551,7 @@ abstract class Base
$result = $this->getFileManager()->isWritableList($fullFileList);
if (!$result) {
$permissionDeniedList = $this->getFileManager()->getLastPermissionDeniedList();
throw new Error("Permission denied in <br>". implode(", <br>", $permissionDeniedList));
throw new Error("Permission denied for <br>". implode(", <br>", $permissionDeniedList));
}
}
+3 -3
View File
@@ -205,7 +205,7 @@ class Manager
$fullPath = $this->concatPaths($path); //todo remove after changing the params
if ($this->checkCreateFile($fullPath) === false) {
throw new Error('Permission denied in '. $fullPath);
throw new Error('Permission denied for '. $fullPath);
}
$res = (file_put_contents($fullPath, $data, $flags, $context) !== FALSE);
@@ -459,7 +459,7 @@ class Manager
if (!empty($permissionDeniedList)) {
$betterPermissionList = $this->getPermissionUtils()->arrangePermissionList($permissionDeniedList);
throw new Error("Permission denied in <br>". implode(", <br>", $betterPermissionList));
throw new Error("Permission denied for <br>". implode(", <br>", $betterPermissionList));
}
$res = true;
@@ -628,7 +628,7 @@ class Manager
if (!empty($permissionDeniedList)) {
$betterPermissionList = $this->getPermissionUtils()->arrangePermissionList($permissionDeniedList);
throw new Error("Permission denied in <br>". implode(", <br>", $betterPermissionList));
throw new Error("Permission denied for <br>". implode(", <br>", $betterPermissionList));
}
$result = true;