diff options
author | redmatrix <mike@macgirvin.com> | 2016-08-28 22:24:27 -0700 |
---|---|---|
committer | redmatrix <mike@macgirvin.com> | 2016-08-28 22:24:27 -0700 |
commit | 6b4cfe4f180a10e3008356c3a4590ad313fa88dd (patch) | |
tree | 399e9317856e0dee4792b6787d481967cbe56bf6 /Zotlabs/Module/Setup.php | |
parent | 810d9fefd9778445994d1b88f18996193005f4c2 (diff) | |
download | volse-hubzilla-6b4cfe4f180a10e3008356c3a4590ad313fa88dd.tar.gz volse-hubzilla-6b4cfe4f180a10e3008356c3a4590ad313fa88dd.tar.bz2 volse-hubzilla-6b4cfe4f180a10e3008356c3a4590ad313fa88dd.zip |
Before throwing a 'smarty3 dir does not exist' fatal error, try and create it. We did try and create it during install, but the template processor is initalised long before we get to that code (and throws that ugly error).
Diffstat (limited to 'Zotlabs/Module/Setup.php')
-rw-r--r-- | Zotlabs/Module/Setup.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Module/Setup.php b/Zotlabs/Module/Setup.php index 8be0dc7e7..610f3c4f4 100644 --- a/Zotlabs/Module/Setup.php +++ b/Zotlabs/Module/Setup.php @@ -43,11 +43,11 @@ class Setup extends \Zotlabs\Web\Controller { killme(); } - if (x($_POST, 'pass')) + if (x($_POST, 'pass')) { $this->install_wizard_pass = intval($_POST['pass']); + } else { $this->install_wizard_pass = 1; - @os_mkdir(TEMPLATE_BUILD_PATH, STORAGE_DEFAULT_PERMISSIONS, true); } } |