Merge pull request #1412 from knnniggett/contentdirs

make cannot write to content dir an error, rather than fatal
This commit is contained in:
Isaac Connor 2016-04-10 21:21:33 -04:00
commit 32dac7e281
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ CORSHeaders();
// Check for valid content dirs
if ( !is_writable(ZM_DIR_EVENTS) || !is_writable(ZM_DIR_IMAGES) )
{
Fatal( "Cannot write to content dirs('".ZM_DIR_EVENTS."','".ZM_DIR_IMAGES."'). Check that these exist and are owned by the web account user");
Error( "Cannot write to content dirs('".ZM_DIR_EVENTS."','".ZM_DIR_IMAGES."'). Check that these exist and are owned by the web account user");
}
if ( isset($_REQUEST['view']) )