aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-02-03 19:53:16 -0800
committerfriendica <info@friendica.com>2013-02-03 19:53:16 -0800
commitfb2b21626ece67862708600b11acb4c748c649f4 (patch)
treeb7235060aab66d81afc4398060b23936377f5367 /include
parent9dcecb6b3704037cb13e8a6350b5df83f6917a40 (diff)
downloadvolse-hubzilla-fb2b21626ece67862708600b11acb4c748c649f4.tar.gz
volse-hubzilla-fb2b21626ece67862708600b11acb4c748c649f4.tar.bz2
volse-hubzilla-fb2b21626ece67862708600b11acb4c748c649f4.zip
clearly a chanview link is not going to work there, go back to zid.
Diffstat (limited to 'include')
-rw-r--r--include/conversation.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php
index 200e876d9..94865e783 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -310,7 +310,7 @@ function localize_item(&$item){
// add zid's to public images
if(preg_match_all('/\[url=(.*?)\/photos\/(.*?)\/image\/(.*?)\]\[img(.*?)\]h(.*?)\[\/img\]\[\/url\]/is',$item['body'],$matches,PREG_SET_ORDER)) {
foreach($matches as $mtch) {
- $item['body'] = str_replace($mtch[0],'[url=' . chanlink_url($mtch[1] . '/photos/' . $mtch[2] . '/image/' . $mtch[3] ,true) . '][img' . $mtch[4] . ']h' . $mtch[5] . '[/img][/url]',$item['body']);
+ $item['body'] = str_replace($mtch[0],'[url=' . zid( $mtch[1] . '/photos/' . $mtch[2] . '/image/' . $mtch[3]) . '][img' . $mtch[4] . ']h' . $mtch[5] . '[/img][/url]',$item['body']);
}
}