View Issue Details

IDProjectCategoryView StatusLast Update
0008535mantisbtotherpublic2008-04-19 04:10
ReporterTarendai Assigned Tojreese  
PrioritynormalSeveritytrivialReproducibilityN/A
Status closedResolutionfixed 
Target Version1.2.0a1Fixed in Version1.2.0a1 
Summary0008535: Replace RSS icon with Universal feed icon
Description

Replacing the orange RSS box icon with the 14x14 standard universal feed icon available here:
http://www.feedicons.com/

It should be a simple drop in replacement.

TagsNo tags attached.
Attached Files
tnguyen.patch (774 bytes)   
Index: core/html_api.php
===================================================================
--- core/html_api.php	(revision 4923)
+++ core/html_api.php	(working copy)
@@ -386,7 +386,7 @@
 				if ( OFF != config_get( 'rss_enabled' ) ) {
 					# Link to RSS issues feed for the selected project, including authentication details.
 					PRINT '<a href="' . rss_get_issues_feed_url() . '">';
-					PRINT '<img src="' . helper_mantis_url( 'images/rss.gif' ) . '" alt="' . lang_get( 'rss' ) . '" style="border-style: none; margin: 5px; vertical-align: middle;" />';
+					PRINT '<img src="' . helper_mantis_url( 'images/feed-icon-14x14.png' ) . '" alt="' . lang_get( 'rss' ) . '" style="border-style: none; margin: 5px; vertical-align: middle;" />';
 					PRINT '</a>';
 				}
 
tnguyen.patch (774 bytes)   
feed-icon-14x14.png (689 bytes)   
feed-icon-14x14.png (689 bytes)   

Activities

tnguyen

tnguyen

2008-01-21 15:43

reporter   ~0016751

Place the standard rss picture (feed-icon-14x14.png) into the images directory.

The modification to core/html_api.php now points to feed-icon-14x14.png

jreese

jreese

2008-02-05 15:47

reporter   ~0016959

Change has been submitted to trunk, revision 4958.