aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2019-05-13 12:14:43 +0000
committerMario <mario@mariovavti.com>2019-05-14 09:12:35 +0200
commit85a29fce942d645e653fb6766b61a3f00f376137 (patch)
tree0d891870dec3a037c4540493d0c4449092bde26d
parentfc726bfb4b4b476a09255135973824cc78f78142 (diff)
downloadvolse-hubzilla-85a29fce942d645e653fb6766b61a3f00f376137.tar.gz
volse-hubzilla-85a29fce942d645e653fb6766b61a3f00f376137.tar.bz2
volse-hubzilla-85a29fce942d645e653fb6766b61a3f00f376137.zip
bbcode map bypass wasn't catching all map forms.
(cherry picked from commit 436293713bab05f11981c963139e51cba25967f1)
-rw-r--r--include/bbcode.php15
1 files changed, 9 insertions, 6 deletions
diff --git a/include/bbcode.php b/include/bbcode.php
index a675451f1..70183fda3 100644
--- a/include/bbcode.php
+++ b/include/bbcode.php
@@ -985,19 +985,22 @@ function bbcode($Text, $options = []) {
// leave open the posibility of [map=something]
// this is replaced in prepare_body() which has knowledge of the item location
-
- if (! $cache) {
+ if ($cache) {
+ $Text = str_replace([ '[map]','[/map]' ], [ '','' ], $Text);
+ $Text = preg_replace('/[map=(.*?)\]/ism','$1',$Text);
+ }
+ else {
if (strpos($Text,'[/map]') !== false) {
$Text = preg_replace_callback("/\[map\](.*?)\[\/map\]/ism", 'bb_map_location', $Text);
}
if (strpos($Text,'[map=') !== false) {
$Text = preg_replace_callback("/\[map=(.*?)\]/ism", 'bb_map_coords', $Text);
}
+ if (strpos($Text,'[map]') !== false) {
+ $Text = preg_replace("/\[map\]/", '<div class="map"></div>', $Text);
+ }
}
- if (strpos($Text,'[map]') !== false) {
- $Text = preg_replace("/\[map\]/", '<div class="map"></div>', $Text);
- }
-
+
// Check for bold text
if (strpos($Text,'[b]') !== false) {
$Text = preg_replace("(\[b\](.*?)\[\/b\])ism", '<strong>$1</strong>', $Text);