From: André Date: Fri, 15 Mar 2013 17:25:22 +0000 (+0100) Subject: Let htmLawed keep width+height for images X-Git-Tag: 1.7.5~181^2 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=822cbf2a87ab2eaaa458ef1849d6f27d752ca9f8;p=tt-rss.git Let htmLawed keep width+height for images --- diff --git a/include/functions.php b/include/functions.php index 54b84032..3927a5b6 100644 --- a/include/functions.php +++ b/include/functions.php @@ -2552,7 +2552,8 @@ $res = trim($str); if (!$res) return ''; $config = array('safe' => 1, 'deny_attribute' => 'style, width, height, class, id', 'comment' => 1, 'cdata' => 1, 'balance' => 0); - $res = htmLawed($res, $config); + $spec = 'img=width,height'; + $res = htmLawed($res, $config, $spec); if (get_pref($link, "STRIP_IMAGES", $owner)) { $res = preg_replace('/]+>/is', '', $res);