From c5f0b85357e04f436402d16a3b3781df47f30812 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 9 Feb 2014 00:30:43 -0800 Subject: fix wall photos --- include/items.php | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'include') diff --git a/include/items.php b/include/items.php index efc2322d5..acf05ed11 100755 --- a/include/items.php +++ b/include/items.php @@ -167,6 +167,15 @@ function red_zrl_callback($matches) { } +// If we've got a url or zrl tag with a naked url somewhere in the link text, +// escape it with quotes unless the naked url is a linked photo. + +function red_escape_zrl_callback($matches) { + + if((strpos($matches[3],'zmg') !== false) || (strpos($matches[3],'img') !== false)) + return $matches[0]; + return '[' . $matches[1] . 'rl' . $matches[2] . ']' . $matches[3] . '"' . $matches[4] . '"' . $matches[5] . '[/' . $matches[6] . 'rl]'; +} /** * @function post_activity_item($arr) -- cgit v1.2.3