aboutsummaryrefslogtreecommitdiffstats
path: root/include/bbcode.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-10-08 18:04:12 +1100
committerfriendica <info@friendica.com>2012-10-08 18:04:12 +1100
commitef22c1a9b3d4c452144bce7b94f31050622e17d6 (patch)
treee507cfa953469a48c9c65729893d91cb5673d842 /include/bbcode.php
parent3c04676a32b048677813c1d8a4c525963a7b2f01 (diff)
downloadvolse-hubzilla-ef22c1a9b3d4c452144bce7b94f31050622e17d6.tar.gz
volse-hubzilla-ef22c1a9b3d4c452144bce7b94f31050622e17d6.tar.bz2
volse-hubzilla-ef22c1a9b3d4c452144bce7b94f31050622e17d6.zip
prevent tag recursion on shared posts
Diffstat (limited to 'include/bbcode.php')
-rw-r--r--include/bbcode.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/bbcode.php b/include/bbcode.php
index e204e1cb4..b383f43b6 100644
--- a/include/bbcode.php
+++ b/include/bbcode.php
@@ -148,6 +148,10 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true) {
$Text = str_replace("<", "&lt;", $Text);
$Text = str_replace(">", "&gt;", $Text);
+ // This only matters when looking for tags - otherwise has no meaning
+
+ $Text = preg_replace("/\[share\](.*?)\[\/share\]/ism", '$1', $Text);
+
// Convert new line chars to html <br /> tags
// nlbr seems to be hopelessly messed up