aboutsummaryrefslogtreecommitdiffstats
path: root/mod/setup.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2015-02-19 15:14:14 -0800
committerfriendica <info@friendica.com>2015-02-19 15:14:14 -0800
commit3ea77f0c105fe088af82f13de164af722e77a217 (patch)
treec78cf26ced0ed3af160ff29804c5039384bfa48e /mod/setup.php
parentfc52536ce70774b24e6f38114ff1e46f392eb983 (diff)
downloadvolse-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.
Diffstat (limited to 'mod/setup.php')
-rwxr-xr-xmod/setup.php2
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') ) {