]> git.mxchange.org Git - friendica.git/blobdiff - src/Render/FriendicaSmarty.php
Merge pull request #5889 from annando/ap-store-diaspora
[friendica.git] / src / Render / FriendicaSmarty.php
index 8c8e637630dd1c37214dd2537d46a951cd805f27..2052aa9e87a6f5627948d99d18b6464dcb3af8a9 100644 (file)
@@ -9,7 +9,7 @@ use Smarty;
 /**
  * Friendica extension of the Smarty3 template engine
  *
- * @author Hypolite Petovan <mrpetovan@gmail.com>
+ * @author Hypolite Petovan <hypolite@mrpetovan.com>
  */
 class FriendicaSmarty extends Smarty
 {
@@ -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;