diff options
author | zotlabs <mike@macgirvin.com> | 2016-11-19 14:16:38 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2016-11-19 14:16:38 -0800 |
commit | dda2ea8fed7e69d5382aa506d5b8324776e095aa (patch) | |
tree | 87eb5c6555e970ea29ae260283c55243222fc00a /include/bb2diaspora.php | |
parent | 2293f9dad660875bc573471f55c7981c10c81c2f (diff) | |
download | volse-hubzilla-dda2ea8fed7e69d5382aa506d5b8324776e095aa.tar.gz volse-hubzilla-dda2ea8fed7e69d5382aa506d5b8324776e095aa.tar.bz2 volse-hubzilla-dda2ea8fed7e69d5382aa506d5b8324776e095aa.zip |
Do not render maps for Diaspora destinations.
Diffstat (limited to 'include/bb2diaspora.php')
-rw-r--r-- | include/bb2diaspora.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/bb2diaspora.php b/include/bb2diaspora.php index da02d6cac..e6c97a750 100644 --- a/include/bb2diaspora.php +++ b/include/bb2diaspora.php @@ -427,6 +427,12 @@ function bb2diaspora($Text,$preserve_nl = false, $fordiaspora = true) { $Text = preg_replace_callback('/\@\!?\[([zu])rl\=(\w+.*?)\](\w+.*?)\[\/([zu])rl\]/i', 'bb2dmention_callback', $Text); + // strip map tags, as the rendering is performed in bbcode() and the resulting output + // is not compatible with Diaspora (at least in the case of openstreetmap and probably + // due to the inclusion of an html iframe) + + $Text = preg_replace("/\[map\=(.*?)\]/ism", '$1', $Text); + $Text = preg_replace("/\[map\](.*?)\[\/map\]/ism", '$1', $Text); // Converting images with size parameters to simple images. Markdown doesn't know it. $Text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $Text); |