diff options
author | zotlabs <mike@macgirvin.com> | 2018-04-04 16:33:11 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-04-04 16:33:11 -0700 |
commit | f7481396060a5a57cdd5fe7055eed5ad3225f8f1 (patch) | |
tree | 927e9594e92c0efa15204419ad6932eb085bac13 /include/conversation.php | |
parent | 8871f8d0f4b33a4ed76ce18c15b7a8fcab916d6e (diff) | |
download | volse-hubzilla-f7481396060a5a57cdd5fe7055eed5ad3225f8f1.tar.gz volse-hubzilla-f7481396060a5a57cdd5fe7055eed5ad3225f8f1.tar.bz2 volse-hubzilla-f7481396060a5a57cdd5fe7055eed5ad3225f8f1.zip |
allow the link target attribute to be modified in bbcode() from much further up the call stack in prepare_page() which will usually refer to a local item.
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php index 64beb1b0e..ce0467770 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1607,7 +1607,7 @@ function prepare_page($item) { // prepare_body calls unobscure() as a side effect. Do it here so that // the template will get passed an unobscured title. - $body = prepare_body($item, true); + $body = prepare_body($item, [ 'newwin' => false ]); if(App::$page['template'] == 'none') { $tpl = 'page_display_empty.tpl'; |