]> git.mxchange.org Git - friendica.git/commitdiff
zrl's when visiting public photos at the source site
authorfriendica <info@friendica.com>
Sun, 3 Jun 2012 08:53:11 +0000 (01:53 -0700)
committerfriendica <info@friendica.com>
Sun, 3 Jun 2012 08:53:11 +0000 (01:53 -0700)
include/conversation.php

index 5c9b604e73b6ea80320f7dae06439640f13582b8..a9c6287a900faf1d8f306eef15b7a429f0bbfc87 100644 (file)
@@ -173,6 +173,12 @@ function localize_item(&$item){
                                $item['body'] = str_replace($mtch[0],'@[url=' . zrl($mtch[1]). ']',$item['body']);
                }
        }
+       if(preg_match_all('/\[url=(.*?)\/photos\/(.*?)\/image\/(.*?)\]\[img(.*?)\]h(.*?)\[\/img\]\[\/url\]/is',$item['body'],$matches,PREG_SET_ORDER)) {
+logger('matched');
+               foreach($matches as $mtch) {
+                               $item['body'] = str_replace($mtch[0],'[url=' . zrl($mtch[1] . '/photos/' . $mtch[2] . '/image/' . $mtch[3] ,true) . '][img' . $mtch[4] . ']h' . $mtch[5]  . '[/img][/url]',$item['body']);
+               }
+       }
 
 
 }