aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorThomas Willingham <beardyunixer@beardyunixer.com>2014-09-29 15:13:39 +0100
committerThomas Willingham <beardyunixer@beardyunixer.com>2014-09-29 15:13:39 +0100
commit9de5b6b9053023d72901c3492e602dcae69c7cc6 (patch)
treea28a19848d77dccf3b025676e51c2cc9a4534192 /include
parentf7595cc11a8648a7877abcd90eca4c7fa118618c (diff)
downloadvolse-hubzilla-9de5b6b9053023d72901c3492e602dcae69c7cc6.tar.gz
volse-hubzilla-9de5b6b9053023d72901c3492e602dcae69c7cc6.tar.bz2
volse-hubzilla-9de5b6b9053023d72901c3492e602dcae69c7cc6.zip
Pluggable page templates
Diffstat (limited to 'include')
-rw-r--r--include/conversation.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/conversation.php b/include/conversation.php
index b0a388a68..92ba18d13 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -1341,8 +1341,10 @@ function prepare_page($item) {
// the template will get passed an unobscured title.
$body = prepare_body($item,true);
-
- return replace_macros(get_markup_template('page_display.tpl'),array(
+ $tpl = get_pconfig($item['uid'],'system','pagetemplate');
+ if (! $tpl)
+ $tpl = 'page_display.tpl';
+ return replace_macros(get_markup_template($tpl),array(
'$author' => (($naked) ? '' : $item['author']['xchan_name']),
'$auth_url' => (($naked) ? '' : zid($item['author']['xchan_url'])),
'$date' => (($naked) ? '' : datetime_convert('UTC',date_default_timezone_get(),$item['created'],'Y-m-d H:i')),