create smarty dir before any templates can be initialised

This commit is contained in:
redmatrix 2016-08-28 22:18:51 -07:00
parent fb13e69b8e
commit 810d9fefd9

View File

@ -45,9 +45,10 @@ class Setup extends \Zotlabs\Web\Controller {
if (x($_POST, 'pass'))
$this->install_wizard_pass = intval($_POST['pass']);
else
else {
$this->install_wizard_pass = 1;
@os_mkdir(TEMPLATE_BUILD_PATH, STORAGE_DEFAULT_PERMISSIONS, true);
}
}
/**