diff options
author | Michael Johnston <mike@vastactive.net> | 2021-06-28 06:55:47 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-06-28 06:55:47 +0000 |
commit | 1034f02d4dd5856383b69d48ceb500478ad48e3f (patch) | |
tree | 9cac4f0be53c8a19a2ffa54571baa6231837f531 /include | |
parent | aca8d1b8f995cf2a4cbbdbb88f7eaebf08967e30 (diff) | |
download | volse-hubzilla-1034f02d4dd5856383b69d48ceb500478ad48e3f.tar.gz volse-hubzilla-1034f02d4dd5856383b69d48ceb500478ad48e3f.tar.bz2 volse-hubzilla-1034f02d4dd5856383b69d48ceb500478ad48e3f.zip |
fix call to prepare_body
Diffstat (limited to 'include')
-rw-r--r-- | include/conversation.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php index d8f0e8155..fed856e62 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1689,7 +1689,8 @@ function prepare_page($item) { // ... other possible options } - $body = prepare_body($item, [ 'newwin' => false ]); + $body = prepare_body($item, true, [ 'newwin' => false ]); + if(App::$page['template'] == 'none') { $tpl = 'page_display_empty.tpl'; |