]> git.mxchange.org Git - friendica.git/blobdiff - src/Render/FriendicaSmarty.php
New option to disable the fetching of parents
[friendica.git] / src / Render / FriendicaSmarty.php
index 44a741d7c83f1fb6dd8363b59fa2aa70288bd45e..c6dcef429b196ac4b9e2514fd660e7e96e96f96d 100644 (file)
@@ -39,12 +39,12 @@ class FriendicaSmarty extends Smarty
 
                // setTemplateDir can be set to an array, which Smarty will parse in order.
                // The order is thus very important here
-               $template_dirs = ['theme' => "view/theme/$theme/" . self::SMARTY3_TEMPLATE_FOLDER . "/"];
+               $template_dirs = ['theme' => "view/theme/$theme/" . self::SMARTY3_TEMPLATE_FOLDER . '/'];
                if (!empty($theme_info['extends'])) {
-                       $template_dirs = $template_dirs + ['extends' => "view/theme/" . $theme_info["extends"] . "/" . self::SMARTY3_TEMPLATE_FOLDER . "/"];
+                       $template_dirs = $template_dirs + ['extends' => 'view/theme/' . $theme_info['extends'] . '/' . self::SMARTY3_TEMPLATE_FOLDER . '/'];
                }
 
-               $template_dirs = $template_dirs + ['base' => "view/" . self::SMARTY3_TEMPLATE_FOLDER . "/"];
+               $template_dirs = $template_dirs + ['base' => 'view/' . self::SMARTY3_TEMPLATE_FOLDER . '/'];
                $this->setTemplateDir($template_dirs);
 
                $this->setCompileDir('view/smarty3/compiled/');
@@ -58,5 +58,7 @@ class FriendicaSmarty extends Smarty
 
                // Don't report errors so verbosely
                $this->error_reporting = E_ALL & ~E_NOTICE;
+
+               $this->muteUndefinedOrNullWarnings();
        }
 }