aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2016-12-18 22:33:23 -0800
committerzotlabs <mike@macgirvin.com>2016-12-18 22:34:02 -0800
commit96260ba26d0caf203b70608b07148d1fcacd72da (patch)
tree6a77b97d7e03f1d9e0094ce202ed6d2b7e4bbac0
parentf83fc2e35cd53538df2b9d0701b38691480f49bb (diff)
downloadvolse-hubzilla-96260ba26d0caf203b70608b07148d1fcacd72da.tar.gz
volse-hubzilla-96260ba26d0caf203b70608b07148d1fcacd72da.tar.bz2
volse-hubzilla-96260ba26d0caf203b70608b07148d1fcacd72da.zip
deprecate bb_iframe
-rw-r--r--include/bbcode.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/bbcode.php b/include/bbcode.php
index b315255f5..32354aeda 100644
--- a/include/bbcode.php
+++ b/include/bbcode.php
@@ -1067,15 +1067,15 @@ function bbcode($Text, $preserve_nl = false, $tryoembed = true, $cache = false)
$Text = preg_replace("/\[zaudio\](.*?)\[\/zaudio\]/", '<a class="zid" href="$1" target="_blank" >$1</a>', $Text);
}
- if ($tryoembed){
- if (strpos($Text,'[/iframe]') !== false) {
- $Text = preg_replace_callback("/\[iframe\](.*?)\[\/iframe\]/ism", 'bb_iframe', $Text);
- }
- } else {
- if (strpos($Text,'[/iframe]') !== false) {
- $Text = preg_replace("/\[iframe\](.*?)\[\/iframe\]/ism", '<a href="$1" target="_blank" >$1</a>', $Text);
- }
- }
+// if ($tryoembed){
+// if (strpos($Text,'[/iframe]') !== false) {
+// $Text = preg_replace_callback("/\[iframe\](.*?)\[\/iframe\]/ism", 'bb_iframe', $Text);
+// }
+// } else {
+// if (strpos($Text,'[/iframe]') !== false) {
+// $Text = preg_replace("/\[iframe\](.*?)\[\/iframe\]/ism", '<a href="$1" target="_blank" >$1</a>', $Text);
+// }
+// }
// oembed tag
$Text = oembed_bbcode2html($Text);