diff --git a/libs/sysplugins/smarty_internal_runtime_writefile.php b/libs/sysplugins/smarty_internal_runtime_writefile.php index 7c462c6ca..93f73125f 100644 --- a/libs/sysplugins/smarty_internal_runtime_writefile.php +++ b/libs/sysplugins/smarty_internal_runtime_writefile.php @@ -37,9 +37,11 @@ public function writeFile($_filepath, $_contents, Smarty $smarty) } $_dirpath = dirname($_filepath); - // if subdirs, create dir structure - if ($_dirpath !== '.' && !file_exists($_dirpath)) { - mkdir($_dirpath, $_dir_perms, true); + + // if subdirs, create dir structure + if ($_dirpath !== '.' && !@mkdir($_dirpath, $_dir_perms, true) && !is_dir($_dirpath)) { + error_reporting($_error_reporting); + throw new SmartyException("unable to create directory {$_dirpath}"); } // write to tmp file, then move to overt file lock race condition