X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=phpfspot.git;a=blobdiff_plain;f=phpfspot_tmpl.php;h=5eff54476b2a21627fe93cc803ce5ef6eb02da3a;hp=9609477f0b7cbcaf06dbd5ce15213ddc2afe3d43;hb=642996d363598ad9b919f261e39c04f25ebabeb1;hpb=6e2d319e3b4fb0aac55413bbcc121669a19e3720;ds=sidebyside diff --git a/phpfspot_tmpl.php b/phpfspot_tmpl.php index 9609477..5eff544 100644 --- a/phpfspot_tmpl.php +++ b/phpfspot_tmpl.php @@ -21,16 +21,19 @@ * ***************************************************************************/ -require 'smarty/libs/Smarty.class.php'; - class PHPFSPOT_TMPL extends Smarty { var $parent; public function __construct($parent) { + if(!file_exists($parent->cfg->base_path .'/themes/'. $parent->cfg->theme_name .'/templates')) { + print "No templates found in ". $parent->cfg->base_path .'/themes/'. $parent->cfg->theme_name .'/templates'; + exit(1); + } + $this->Smarty(); - $this->template_dir = $parent->cfg->base_path .'/templates'; + $this->template_dir = $parent->cfg->base_path .'/themes/'. $parent->cfg->theme_name .'/templates'; $this->compile_dir = $parent->cfg->base_path .'/templates_c'; $this->config_dir = $parent->cfg->base_path .'/smarty_config'; $this->cache_dir = $parent->cfg->base_path .'/smarty_cache';