aboutsummaryrefslogtreecommitdiffstats
path: root/include/template.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/template.class.php')
-rw-r--r--include/template.class.php26
1 files changed, 16 insertions, 10 deletions
diff --git a/include/template.class.php b/include/template.class.php
index f85bcc03f..dec4a9063 100644
--- a/include/template.class.php
+++ b/include/template.class.php
@@ -52,18 +52,24 @@ class Template {
$this->smarty->compile_check = $conf['template_compile_check'];
$this->smarty->force_compile = $conf['template_force_compile'];
- if (!is_writable($conf['local_data_dir']))
+ if (!isset($conf['local_data_dir_checked']))
{
- load_language('admin.lang');
- fatal_error(
- sprintf(
- l10n('Give write access (chmod 777) to "%s" directory at the root of your Piwigo installation'),
- basename($conf['local_data_dir'])
- ),
- l10n('an error happened'),
- false // show trace
- );
+ mkgetdir($conf['local_data_dir'], MKGETDIR_DEFAULT&~MKGETDIR_DIE_ON_ERROR);
+ if (!is_writable($conf['local_data_dir']))
+ {
+ load_language('admin.lang');
+ fatal_error(
+ sprintf(
+ l10n('Give write access (chmod 777) to "%s" directory at the root of your Piwigo installation'),
+ basename($conf['local_data_dir'])
+ ),
+ l10n('an error happened'),
+ false // show trace
+ );
+ }
+ conf_update_param('local_data_dir_checked', 'true');
}
+
$compile_dir = $conf['local_data_dir'].'/templates_c';
mkgetdir( $compile_dir );