View Issue Details

IDProjectCategoryView StatusLast Update
0005408mantisbtbugtrackerpublic2006-02-04 05:54
Reporterstb Assigned Toryandesign  
PrioritynormalSeverityfeatureReproducibilityalways
Status closedResolutionfixed 
Platformx86OSLinuxOS Version2.4
Product Version0.19.2 
Fixed in Version1.1.0a1 
Summary0005408: Suggestion: Tooltip (title) with text for priority icon
Description

add html title attribute to priority icon

TagsNo tags attached.

Activities

stb

stb

2005-04-06 06:58

reporter   ~0009745

quick hack to do it in core/icon_api.php:

prints the status icon

function icon_get_status_icon( $p_icon ) {
$t_icon_path = config_get( 'icon_path' );
$t_status_icon_arr = config_get( 'status_icon_arr' );
$t_priotext = get_enum_element( 'priority', $p_icon );
$t_none = NONE;
if ( !is_blank( $t_status_icon_arr[$p_icon] ) ) {
return "<img title=\"$t_priotext\" src=\"$t_icon_path$t_status_icon_arr[$p_icon]\" alt=\"\" />";
} else {
return " ";
}

ryandesign

ryandesign

2005-09-18 23:18

reporter   ~0011391

In fact, that does seem to be a very simple and effective way to fix it. Implemented.

icon_api.php -> 1.14