Merge pull request #1412 from knnniggett/contentdirs
make cannot write to content dir an error, rather than fatal
This commit is contained in:
commit
32dac7e281
|
@ -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']) )
|
||||
|
|
Loading…
Reference in New Issue