Updated AssetList widget to use correct folder permissions

This commit is contained in:
jBOKA 2015-09-20 06:03:42 +02:00
parent ab4abb9bc5
commit 2bfcec811f

View File

@ -293,7 +293,7 @@ class AssetList extends WidgetBase
throw new ApplicationException(Lang::get('cms::lang.asset.already_exists'));
}
if (!@mkdir($newFullPath)) {
if (!File::makeDirectory($newFullPath)) {
throw new ApplicationException(Lang::get(
'cms::lang.cms_object.error_creating_directory',
['name' => $newName]
@ -422,7 +422,7 @@ class AssetList extends WidgetBase
$assetsPath = $this->getAssetsPath();
if (!file_exists($assetsPath) || !is_dir($assetsPath)) {
if (!@mkdir($assetsPath)) {
if (!File::makeDirectory($assetsPath)) {
throw new ApplicationException(Lang::get(
'cms::lang.cms_object.error_creating_directory',
['name'=>$assetsPath]