X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FRender%2FFriendicaSmarty.php;h=2052aa9e87a6f5627948d99d18b6464dcb3af8a9;hb=735a5980bd1da3afc3eaa95edcd80478864a032b;hp=ab19993081a293e972e95769861281a7e11a345d;hpb=29f7ebe307c22b275466390937b82ccb3820fb1c;p=friendica.git diff --git a/src/Render/FriendicaSmarty.php b/src/Render/FriendicaSmarty.php index ab19993081..2052aa9e87 100644 --- a/src/Render/FriendicaSmarty.php +++ b/src/Render/FriendicaSmarty.php @@ -9,7 +9,7 @@ use Smarty; /** * Friendica extension of the Smarty3 template engine * - * @author Hypolite Petovan + * @author Hypolite Petovan */ class FriendicaSmarty extends Smarty { @@ -22,7 +22,7 @@ class FriendicaSmarty extends Smarty parent::__construct(); $a = get_app(); - $theme = current_theme(); + $theme = $a->getCurrentTheme(); // setTemplateDir can be set to an array, which Smarty will parse in order. // The order is thus very important here @@ -38,8 +38,8 @@ class FriendicaSmarty extends Smarty $this->setConfigDir('view/smarty3/config/'); $this->setCacheDir('view/smarty3/cache/'); - $this->left_delimiter = $a->get_template_ldelim('smarty3'); - $this->right_delimiter = $a->get_template_rdelim('smarty3'); + $this->left_delimiter = $a->getTemplateLeftDelimiter('smarty3'); + $this->right_delimiter = $a->getTemplateRightDelimiter('smarty3'); // Don't report errors so verbosely $this->error_reporting = E_ALL & ~E_NOTICE;