From 8ad2b3e7a13fccab2e508ce944e0b02c3d259711 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sun, 23 Apr 2017 21:22:40 -0400 Subject: When template "none" is used in a webpage layout, then the contents of the page should be the sole output, with no other code before or after the page element content. --- include/conversation.php | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'include/conversation.php') diff --git a/include/conversation.php b/include/conversation.php index 5b2d60583..0f940b1a3 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1541,6 +1541,15 @@ function prepare_page($item) { // the template will get passed an unobscured title. $body = prepare_body($item, true); + if(App::$page['template'] == 'none') { + $tpl = 'page_display_empty.tpl'; + + return replace_macros(get_markup_template($tpl), array( + '$body' => $body['html'] + )); + + } + $tpl = get_pconfig($item['uid'], 'system', 'pagetemplate'); if (! $tpl) $tpl = 'page_display.tpl'; -- cgit v1.2.3