diff options
author | friendica <info@friendica.com> | 2014-03-01 17:49:28 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-03-01 17:49:28 -0800 |
commit | 247cb85c94c0214c6d60158e0429931a2f8479a0 (patch) | |
tree | 97b30418aa0c6c97c293499e8da0582310357aa1 /include/comanche.php | |
parent | c402f39cf869329835fb24dac5613629278a2713 (diff) | |
download | volse-hubzilla-247cb85c94c0214c6d60158e0429931a2f8479a0.tar.gz volse-hubzilla-247cb85c94c0214c6d60158e0429931a2f8479a0.tar.bz2 volse-hubzilla-247cb85c94c0214c6d60158e0429931a2f8479a0.zip |
it's unfortunate that we use the term "layout" to refer both to a template file and to Comanche .PDL files. I think we should probably refer to the template file as "template" just to avoid confusion. For the moment we'll provide both, since the 'layout' is already in the wild. But please use "template" going forward.
Diffstat (limited to 'include/comanche.php')
-rw-r--r-- | include/comanche.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/comanche.php b/include/comanche.php index 0c81b0ed3..3cf5e72a5 100644 --- a/include/comanche.php +++ b/include/comanche.php @@ -57,6 +57,10 @@ function comanche_parser(&$a,$s) { if($cnt) $a->page['template'] = trim($matches[1]); + $cnt = preg_match("/\[template\](.*?)\[\/template\]/ism", $s, $matches); + if($cnt) + $a->page['template'] = trim($matches[1]); + $cnt = preg_match("/\[theme=(.*?)\](.*?)\[\/theme\]/ism", $s, $matches); if($cnt) { |