INSTALL: 'store' is created during setup but not 'store/[data]/smarty3' and we explicitly check for the latter and report that it isn't there or isn't writable. Doh.

This commit is contained in:
friendica 2015-02-19 15:14:14 -08:00
parent fc52536ce7
commit 3ea77f0c10

View File

@ -535,7 +535,7 @@ function check_store(&$checks) {
$status = true;
$help = "";
@os_mkdir('store',STORAGE_DEFAULT_PERMISSIONS);
@os_mkdir(TEMPLATE_BUILD_PATH,STORAGE_DEFAULT_PERMISSIONS,true);
if( !is_writable('store') ) {