From 05f1e718e126ed3d90b6bb6ceda228064058bff8 Mon Sep 17 00:00:00 2001 From: thisgun Date: Thu, 7 Mar 2019 16:20:06 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B2=8C=EC=8B=9C=EB=AC=BC=EC=97=90=EC=84=9C?= =?UTF-8?q?=20=ED=8E=98=EC=9D=B4=EC=8A=A4=EB=B6=81=20=EC=98=81=EC=83=81=20?= =?UTF-8?q?=EC=A0=84=EC=B2=B4=ED=99=94=EB=A9=B4=EC=9D=B4=20=EA=B0=80?= =?UTF-8?q?=EB=8A=A5=ED=95=98=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugin/htmlpurifier/extend.video.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/plugin/htmlpurifier/extend.video.php b/plugin/htmlpurifier/extend.video.php index 96cb5b846..24ef7c8de 100644 --- a/plugin/htmlpurifier/extend.video.php +++ b/plugin/htmlpurifier/extend.video.php @@ -24,6 +24,7 @@ if( !class_exists('HTMLPurifier_Filter_Iframevideo') ){ if (strstr($html, ']*>(.*?)?\/iframe>/i', array($this, 'trust_url_match'), $html); $html = preg_replace_callback('/]*>(.*?)?\/iframe>/i', array($this, 'trust_url_match'), $html); + $html = preg_replace_callback('/]*>(.*?)?\/iframe>/i', array($this, 'trust_url_match'), $html); //$html = preg_replace('##i', '', $html); } @@ -62,9 +63,10 @@ if( !class_exists('HTMLPurifier_Filter_Iframevideo') ){ // Domain Whitelist $youTubeMatch = preg_match('#src="https?://www.youtube(-nocookie)?.com/#i', $matches[1]); $vimeoMatch = preg_match('#src="https?://player.vimeo.com/#i', $matches[1]); - if ($youTubeMatch || $vimeoMatch) { + $fackbookMatch = preg_match('#src="https?://www.facebook.com/#i', $matches[1]); + if ($youTubeMatch || $vimeoMatch || $fackbookMatch) { $extra = ' frameborder="0"'; - if ($youTubeMatch) { + if ($youTubeMatch || $fackbookMatch) { $extra .= ' allowfullscreen'; } elseif ($vimeoMatch) { $extra .= ' webkitAllowFullScreen mozallowfullscreen allowFullScreen';