aboutsummaryrefslogtreecommitdiffstats
path: root/include/oembed.php
diff options
context:
space:
mode:
authorfabrixxm <fabrix.xm@gmail.com>2011-02-01 18:46:28 +0100
committerfabrixxm <fabrix.xm@gmail.com>2011-02-01 18:46:28 +0100
commit58e0129433559e41c93ac823229f53e46bdb7983 (patch)
tree50ae4d8845bc16e2edfbaa916e80d8709ee3fe86 /include/oembed.php
parent0bec0fc5fb5bfb02a80c6a84581d9daeb9f17813 (diff)
parent042aa2e169310bc23398d0558455a61fe1e86a92 (diff)
downloadvolse-hubzilla-58e0129433559e41c93ac823229f53e46bdb7983.tar.gz
volse-hubzilla-58e0129433559e41c93ac823229f53e46bdb7983.tar.bz2
volse-hubzilla-58e0129433559e41c93ac823229f53e46bdb7983.zip
Merge branch 'master' of github.com:fabrixxm/friendika
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);
}