diff options
author | Friendika <info@friendika.com> | 2011-06-15 03:41:28 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-06-15 03:41:28 -0700 |
commit | 7601ce7de747dcffdb63be027ed8b8327e0b6e41 (patch) | |
tree | a040c246b2b4a5086235163a121e9b5bf601c67e /include/bbcode.php | |
parent | cee63c7a0d5362e255551d0a8c3dfa667322f8b1 (diff) | |
download | volse-hubzilla-7601ce7de747dcffdb63be027ed8b8327e0b6e41.tar.gz volse-hubzilla-7601ce7de747dcffdb63be027ed8b8327e0b6e41.tar.bz2 volse-hubzilla-7601ce7de747dcffdb63be027ed8b8327e0b6e41.zip |
iframes
Diffstat (limited to 'include/bbcode.php')
-rw-r--r-- | include/bbcode.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/bbcode.php b/include/bbcode.php index a44838c24..40f4935fb 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -97,6 +97,7 @@ function bbcode($Text,$preserve_nl = false) { $Text = preg_replace("/\[audio\](.*?)\[\/audio\]/", '<audio src="$1" controls="controls"><a href="$1">$1</a></audio>', $Text); + $Text = preg_replace("/\[iframe\](.*?)\[\/iframe\]/", '<iframe src="$1" width="425" height="350"><a href="$1">$1</a></iframe>', $Text); // [img=widthxheight]image source[/img] $Text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/", '<img src="$3" style="height:{$2}px; width:{$1}px;" >', $Text); |