aboutsummaryrefslogtreecommitdiffstats
path: root/include/bbcode.php
diff options
context:
space:
mode:
authorfriendica <redmatrix@redmatrix.me>2015-04-30 17:52:34 -0700
committerfriendica <redmatrix@redmatrix.me>2015-04-30 17:52:34 -0700
commit097002910ead3ec263f723eb66e659f0469b8bb6 (patch)
tree509b11f02380802d7e30fceac6f01e2bd0c152d4 /include/bbcode.php
parentbc44b6f793c686255ab1c6d2e18a6dbe754b6b96 (diff)
downloadvolse-hubzilla-097002910ead3ec263f723eb66e659f0469b8bb6.tar.gz
volse-hubzilla-097002910ead3ec263f723eb66e659f0469b8bb6.tar.bz2
volse-hubzilla-097002910ead3ec263f723eb66e659f0469b8bb6.zip
just a test, please do not try to implement this as there are severe security issues
Diffstat (limited to 'include/bbcode.php')
-rw-r--r--include/bbcode.php12
1 files changed, 10 insertions, 2 deletions
diff --git a/include/bbcode.php b/include/bbcode.php
index 47a1fd223..fe5f37260 100644
--- a/include/bbcode.php
+++ b/include/bbcode.php
@@ -420,7 +420,11 @@ function bbcode($Text, $preserve_nl = false, $tryoembed = true) {
// process [observer] tags before we do anything else because we might
// be stripping away stuff that then doesn't need to be worked on anymore
- $observer = $a->get_observer();
+ if(get_config('system','item_cache'))
+ $observer = false;
+ else
+ $observer = $a->get_observer();
+
if ((strpos($Text,'[/observer]') !== false) || (strpos($Text,'[/rpost]') !== false)) {
if ($observer) {
$Text = preg_replace("/\[observer\=1\](.*?)\[\/observer\]/ism", '$1', $Text);
@@ -433,7 +437,11 @@ function bbcode($Text, $preserve_nl = false, $tryoembed = true) {
}
}
- $channel = $a->get_channel();
+ if(get_config('system','item_cache'))
+ $channel = false;
+ else
+ $channel = $a->get_channel();
+
if (strpos($Text,'[/channel]') !== false) {
if ($channel) {
$Text = preg_replace("/\[channel\=1\](.*?)\[\/channel\]/ism", '$1', $Text);