aboutsummaryrefslogtreecommitdiffstats
path: root/include/oembed.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-01-31 23:06:45 -0800
committerFriendika <info@friendika.com>2011-01-31 23:06:45 -0800
commit9d561d4471bccdd199821cd9ce5b2f6354ab8e65 (patch)
treec6bcf4f0fdd15b083769b54dc3bf89bd13ae44d1 /include/oembed.php
parent7dbdf8e6faf082e962772b76511f0fd24b6227cc (diff)
downloadvolse-hubzilla-9d561d4471bccdd199821cd9ce5b2f6354ab8e65.tar.gz
volse-hubzilla-9d561d4471bccdd199821cd9ce5b2f6354ab8e65.tar.bz2
volse-hubzilla-9d561d4471bccdd199821cd9ce5b2f6354ab8e65.zip
oembed contsant name, fix dfrnpubdeliver, add 'code' editor button
Diffstat (limited to 'include/oembed.php')
-rw-r--r--include/oembed.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/oembed.php b/include/oembed.php
index a130357ab..37923a877 100644
--- a/include/oembed.php
+++ b/include/oembed.php
@@ -56,7 +56,7 @@ function oembed_bbcode2html($text){
if ($stopoembed == true){
return preg_replace("/\[embed\](.+?)\[\/embed\]/is", "<!-- oembed $1 --><i>". t('Embedding disabled') ." : $1</i><!-- /oembed $1 -->" ,$text);
}
- return preg_replace_callback("/\[embed\](.+?)\[\/embed\]/is", oembed_replacecb ,$text);
+ return preg_replace_callback("/\[embed\](.+?)\[\/embed\]/is", 'oembed_replacecb' ,$text);
}