X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=inline;f=include%2Foembed.php;h=37923a877bf7193f44f862fa1920360fdbf66029;hb=f70a0b028288fa13c64f1ffaa310765a95347dac;hp=a130357abf75dff3d78f32b39cd221426ce818c3;hpb=082909fe1a861219c4f9159f8f8df5aea7546da9;p=friendica.git diff --git a/include/oembed.php b/include/oembed.php index a130357abf..37923a877b 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", "". t('Embedding disabled') ." : $1" ,$text); } - return preg_replace_callback("/\[embed\](.+?)\[\/embed\]/is", oembed_replacecb ,$text); + return preg_replace_callback("/\[embed\](.+?)\[\/embed\]/is", 'oembed_replacecb' ,$text); }