aboutsummaryrefslogtreecommitdiffstats
path: root/include/plugin.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-12-28 17:28:49 -0800
committerfriendica <info@friendica.com>2012-12-28 17:28:49 -0800
commitddd58e6e285c6e3dc81beb7f453999e4a93fc069 (patch)
treec9f22018508ea63e1b07a850b0c42d37a02c308e /include/plugin.php
parentdda4d689bbdd871f5bd8809ce5381aaee5004d5b (diff)
downloadvolse-hubzilla-ddd58e6e285c6e3dc81beb7f453999e4a93fc069.tar.gz
volse-hubzilla-ddd58e6e285c6e3dc81beb7f453999e4a93fc069.tar.bz2
volse-hubzilla-ddd58e6e285c6e3dc81beb7f453999e4a93fc069.zip
bypass replace_macros and use template processor directly for theme includes
Diffstat (limited to 'include/plugin.php')
-rw-r--r--include/plugin.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/plugin.php b/include/plugin.php
index 46a659ddc..c13a0ff07 100644
--- a/include/plugin.php
+++ b/include/plugin.php
@@ -475,6 +475,8 @@ function format_js_if_exists($source) {
function theme_include($file) {
+ global $t; // use builtin template processor
+
$paths = array(
'view/theme/$theme/$ext/$file',
'view/theme/$theme/$file',
@@ -492,7 +494,7 @@ function theme_include($file) {
$parent = 'NOPATH';
foreach($paths as $p) {
- $f = replace_macros($p,array(
+ $f = $t->replace($p,array(
'$theme' => current_theme(),
'$ext' => substr($file,strrpos($file,'.')+1),
'$parent' => $parent,