aboutsummaryrefslogtreecommitdiffstats
path: root/include/bbcode.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2019-10-04 07:18:19 +0000
committerMario <mario@mariovavti.com>2019-10-04 09:25:39 +0200
commit1fbc8739b9521703e68f274728ec04b4b941d49e (patch)
treeeb274da5fc4ed0fd593d2a9587918b9f266c6da8 /include/bbcode.php
parent58b77e3427ef5130ca07ebaf73d86cbaff4863cd (diff)
downloadvolse-hubzilla-1fbc8739b9521703e68f274728ec04b4b941d49e.tar.gz
volse-hubzilla-1fbc8739b9521703e68f274728ec04b4b941d49e.tar.bz2
volse-hubzilla-1fbc8739b9521703e68f274728ec04b4b941d49e.zip
fix bbcode event reshare timezone issue
(cherry picked from commit 79bcc157bf8f0c67a8ee41ae9c53a9dec969f8d1)
Diffstat (limited to 'include/bbcode.php')
-rw-r--r--include/bbcode.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/bbcode.php b/include/bbcode.php
index 485a1f5b2..bb9144b1d 100644
--- a/include/bbcode.php
+++ b/include/bbcode.php
@@ -1346,6 +1346,7 @@ function bbcode($Text, $options = []) {
$Text = preg_replace("/\[event\-finish\](.*?)\[\/event\-finish\]/ism",'',$Text);
$Text = preg_replace("/\[event\-id\](.*?)\[\/event\-id\]/ism",'',$Text);
$Text = preg_replace("/\[event\-location\](.*?)\[\/event\-location\]/ism",'',$Text);
+ $Text = preg_replace("/\[event\-timezone\](.*?)\[\/event\-timezone\]/ism",'',$Text);
$Text = preg_replace("/\[event\-adjust\](.*?)\[\/event\-adjust\]/ism",'',$Text);
$Text = str_replace("\0",'$',$Text);