From: Andrew Dolgov Date: Wed, 20 Mar 2013 18:18:56 +0000 (+0400) Subject: iframe sandbox: allow scripts X-Git-Tag: 1.7.5~63 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=4e4048024a2007527eaf713408c03e83f319b4ed;p=tt-rss.git iframe sandbox: allow scripts --- diff --git a/include/functions.php b/include/functions.php index ca129ab8..417a05c2 100644 --- a/include/functions.php +++ b/include/functions.php @@ -2634,7 +2634,8 @@ $entries = $xpath->query('//iframe'); foreach ($entries as $entry) { - $entry->setAttribute('sandbox', true); + $entry->setAttribute('sandbox', 'allow-scripts'); + } global $pluginhost;