Skip to content

Commit

Permalink
Show tag description when hovering over a tag
Browse files Browse the repository at this point in the history
However over a tag name in the drop down list used to show tag name,
now we should the tag description in the tooltip.

Fixes #20749
  • Loading branch information
vboctor committed Mar 24, 2016
1 parent b3d2d85 commit eeb103f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/print_api.php
Expand Up @@ -404,8 +404,8 @@ function print_tag_option_list( $p_bug_id = 0 ) {

echo '<option value="0">', string_html_specialchars( lang_get( 'tag_existing' ) ), '</option>';
foreach ( $t_rows as $t_row ) {
$t_string = $t_row['name'];
echo '<option value="', $t_row['id'], '" title="', string_attribute( $t_row['name'] ), '">', string_attribute( $t_string ), '</option>';
echo '<option value="', $t_row['id'], '" title="', string_attribute( $t_row['description'] );
echo '">', string_attribute( $t_row['name'] ), '</option>';
}
}

Expand Down

0 comments on commit eeb103f

Please sign in to comment.