diff options
author | Mario <mario@mariovavti.com> | 2025-02-20 10:36:58 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2025-02-20 10:36:58 +0000 |
commit | fa01a2b34810ab77c17b46b2fff7ed5960aad2d5 (patch) | |
tree | 00bfbafb62afdf5220b90807c83a0325af6fcf21 /Zotlabs | |
parent | ea9d2a0acf40cb86aa897e3871a3ca7b4a276cab (diff) | |
parent | 65c8de34101cedc33fc8e6282ff11e8e57eeed1b (diff) | |
download | volse-hubzilla-fa01a2b34810ab77c17b46b2fff7ed5960aad2d5.tar.gz volse-hubzilla-fa01a2b34810ab77c17b46b2fff7ed5960aad2d5.tar.bz2 volse-hubzilla-fa01a2b34810ab77c17b46b2fff7ed5960aad2d5.zip |
Merge branch 'dev' of https://framagit.org/hubzilla/core into dev
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Render/SmartyInterface.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Zotlabs/Render/SmartyInterface.php b/Zotlabs/Render/SmartyInterface.php index 64c6aa377..a319a4881 100644 --- a/Zotlabs/Render/SmartyInterface.php +++ b/Zotlabs/Render/SmartyInterface.php @@ -2,7 +2,7 @@ namespace Zotlabs\Render; -use Smarty; +use Smarty\Smarty; use App; class SmartyInterface extends Smarty { @@ -26,13 +26,13 @@ class SmartyInterface extends Smarty { $this->setTemplateDir($template_dirs); $basecompiledir = App::$config['system']['smarty3_folder']; - + $this->setCompileDir($basecompiledir.'/compiled/'); $this->setConfigDir($basecompiledir.'/config/'); $this->setCacheDir($basecompiledir.'/cache/'); - $this->left_delimiter = App::get_template_ldelim('smarty3'); - $this->right_delimiter = App::get_template_rdelim('smarty3'); + $this->setLeftDelimiter(App::get_template_ldelim('smarty3')); + $this->setRightDelimiter(App::get_template_rdelim('smarty3')); // Don't report errors so verbosely $this->error_reporting = E_ALL & ~E_WARNING & ~E_NOTICE; |