diff options
author | friendica <info@friendica.com> | 2015-02-19 15:14:14 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-02-19 15:14:14 -0800 |
commit | 3ea77f0c105fe088af82f13de164af722e77a217 (patch) | |
tree | c78cf26ced0ed3af160ff29804c5039384bfa48e | |
parent | fc52536ce70774b24e6f38114ff1e46f392eb983 (diff) | |
download | volse-hubzilla-3ea77f0c105fe088af82f13de164af722e77a217.tar.gz volse-hubzilla-3ea77f0c105fe088af82f13de164af722e77a217.tar.bz2 volse-hubzilla-3ea77f0c105fe088af82f13de164af722e77a217.zip |
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.
-rwxr-xr-x | mod/setup.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/setup.php b/mod/setup.php index d192eaf21..adcbbef16 100755 --- a/mod/setup.php +++ b/mod/setup.php @@ -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') ) { |