diff options
author | friendica <info@friendica.com> | 2014-07-16 01:07:00 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-07-16 01:07:00 -0700 |
commit | 3a31ddea2b516cebe60c6ac096516db8df101fd0 (patch) | |
tree | 55ff5e01ec3035b0a8ade9e0731bd7d1b51e7794 /mod/cloud.php | |
parent | 0435a08f3bafe47e0fe0cda6e698f93a5fab26e6 (diff) | |
download | volse-hubzilla-3a31ddea2b516cebe60c6ac096516db8df101fd0.tar.gz volse-hubzilla-3a31ddea2b516cebe60c6ac096516db8df101fd0.tar.bz2 volse-hubzilla-3a31ddea2b516cebe60c6ac096516db8df101fd0.zip |
provide os_mkdir to workaround permission issues with php mkdir
Diffstat (limited to 'mod/cloud.php')
-rw-r--r-- | mod/cloud.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/cloud.php b/mod/cloud.php index 25773066a..3734f769a 100644 --- a/mod/cloud.php +++ b/mod/cloud.php @@ -37,7 +37,7 @@ function cloud_init(&$a) { require_once('include/reddav.php'); if(! is_dir('store')) - mkdir('store',STORAGE_DEFAULT_PERMISSIONS,false); + os_mkdir('store',STORAGE_DEFAULT_PERMISSIONS,false); $which = null; if(argc() > 1) |