summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-09-03 16:41:35 +0300
committerAndrew Dolgov <[email protected]>2015-09-03 16:41:35 +0300
commit8dc539db8f50cf2a9bef666c54dd4722ecd7bcc3 (patch)
tree0c37e404a404aa590514905ac9610fa565f32270
parent791877c39de3924aec2b3fe8e37596f062ef5a44 (diff)
parent2606a4e3aec72d8d0d8e5170c9ee2dfea25b9111 (diff)
Merge branch 'master' of git.tt-rss.org:fox/tt-rss
-rw-r--r--include/functions2.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/functions2.php b/include/functions2.php
index dd9d1ad68..a135049a5 100644
--- a/include/functions2.php
+++ b/include/functions2.php
@@ -1953,9 +1953,9 @@
if (!$hide_images) {
$encsize = '';
if ($entry['height'] > 0)
- $encsize .= ' height="' . intval($entry['width']) . '"';
+ $encsize .= ' height="' . intval($entry['height']) . '"';
if ($entry['width'] > 0)
- $encsize .= ' width="' . intval($entry['height']) . '"';
+ $encsize .= ' width="' . intval($entry['width']) . '"';
$rv .= "<p><img
alt=\"".htmlspecialchars($entry["filename"])."\"
src=\"" .htmlspecialchars($entry["url"]) . "\"