diff options
author | fabrixxm <fabrix.xm@gmail.com> | 2011-02-01 18:46:28 +0100 |
---|---|---|
committer | fabrixxm <fabrix.xm@gmail.com> | 2011-02-01 18:46:28 +0100 |
commit | 58e0129433559e41c93ac823229f53e46bdb7983 (patch) | |
tree | 50ae4d8845bc16e2edfbaa916e80d8709ee3fe86 /include/oembed.php | |
parent | 0bec0fc5fb5bfb02a80c6a84581d9daeb9f17813 (diff) | |
parent | 042aa2e169310bc23398d0558455a61fe1e86a92 (diff) | |
download | volse-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.php | 2 |
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); } |