diff options
author | friendica <info@friendica.com> | 2015-02-08 20:57:37 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-02-08 20:57:37 -0800 |
commit | 08b757a22cd2804bfec8ecf682b6987b8c06ca49 (patch) | |
tree | 477f3a8e84388aab2a4f3c938a166597c7467d19 /mod/item.php | |
parent | 4b348d248975ba07ba9cea62f51eb52d6afb5645 (diff) | |
parent | 247579ebf13ead372eee87bd2351078f7219321e (diff) | |
download | volse-hubzilla-08b757a22cd2804bfec8ecf682b6987b8c06ca49.tar.gz volse-hubzilla-08b757a22cd2804bfec8ecf682b6987b8c06ca49.tar.bz2 volse-hubzilla-08b757a22cd2804bfec8ecf682b6987b8c06ca49.zip |
Merge branch 'master' into tres
Conflicts:
mod/events.php
view/css/mod_events.css
Diffstat (limited to 'mod/item.php')
-rw-r--r-- | mod/item.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mod/item.php b/mod/item.php index f4024f83c..74c043d5a 100644 --- a/mod/item.php +++ b/mod/item.php @@ -511,6 +511,7 @@ function item_post(&$a) { * First protect any url inside certain bbcode tags so we don't double link it. */ + $body = preg_replace_callback('/\[code(.*?)\[\/(code)\]/ism','red_escape_codeblock',$body); $body = preg_replace_callback('/\[url(.*?)\[\/(url)\]/ism','red_escape_codeblock',$body); $body = preg_replace_callback('/\[zrl(.*?)\[\/(zrl)\]/ism','red_escape_codeblock',$body); |