diff options
author | Mario <mario@mariovavti.com> | 2021-06-28 06:55:47 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-06-28 06:55:47 +0000 |
commit | 842c7b31fb6e34c537d6ebf671327c5a114e573a (patch) | |
tree | 4164d7127168a6af24d84669476c6d0f45e3de15 | |
parent | 3f6b6dfaf3ea8fbb2845d3f3c40e00a0e6d3ce06 (diff) | |
parent | 1034f02d4dd5856383b69d48ceb500478ad48e3f (diff) | |
download | volse-hubzilla-842c7b31fb6e34c537d6ebf671327c5a114e573a.tar.gz volse-hubzilla-842c7b31fb6e34c537d6ebf671327c5a114e573a.tar.bz2 volse-hubzilla-842c7b31fb6e34c537d6ebf671327c5a114e573a.zip |
Merge branch 'fix' into 'dev'
fix call to prepare_body
See merge request hubzilla/core!1973
-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'; |