From: Felix Eckhofer
Date: Tue, 15 Jul 2014 13:44:05 +0000 (+0200)
Subject: Add width/height attribute to image enclosures
X-Git-Tag: 1.13~3^2
X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=1e871938153497d46537fc313a79155717d532d0;p=tt-rss.git
Add width/height attribute to image enclosures
---
diff --git a/include/functions2.php b/include/functions2.php
index 3e336724..07024d38 100644
--- a/include/functions2.php
+++ b/include/functions2.php
@@ -1868,6 +1868,8 @@
$url = $line["content_url"];
$ctype = $line["content_type"];
$title = $line["title"];
+ $width = $line["width"];
+ $height = $line["height"];
if (!$ctype) $ctype = __("unknown type");
@@ -1891,6 +1893,8 @@
$entry["filename"] = $filename;
$entry["url"] = $url;
$entry["title"] = $title;
+ $entry["width"] = $width;
+ $entry["height"] = $height;
array_push($entries, $entry);
}
@@ -1905,9 +1909,15 @@
preg_match("/\.(jpg|png|gif|bmp)/i", $entry["filename"])) {
if (!$hide_images) {
+ $encsize = '';
+ if ($entry['height'] > 0)
+ $encsize .= ' height="' . intval($entry['width']) . '"';
+ if ($entry['width'] > 0)
+ $encsize .= ' width="' . intval($entry['height']) . '"';
$rv .= "";
+ src=\"" .htmlspecialchars($entry["url"]) . "\"
+ " . $encsize . " />
";
} else {
$rv .= "