diff options
| author | Andrew Dolgov <fox@madoka.spb.ru> | 2008-10-09 05:22:39 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.spb.ru> | 2008-10-09 05:22:39 +0100 |
| commit | 20be0cf8e73948645c451831d2bfbf27ecc59e10 (patch) | |
| tree | 4029d685efa6543cef3ebb198c1b991978273e57 | |
| parent | fad8506f6511c83be66442aa6231b0455281a9d1 (diff) | |
fix for wrong icon being displayed in headline (aggregate view mode) when the originating feed doesn't have an icon
| -rw-r--r-- | functions.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/functions.php b/functions.php index 857d98e94..5e0c05b1f 100644 --- a/functions.php +++ b/functions.php @@ -5055,6 +5055,7 @@ $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">"; } else { //$feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\" alt=\"\">"; + $feed_icon_img = ""; } if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) { |