From eeb103f33dbe43d2b0502253d5c70e776148578c Mon Sep 17 00:00:00 2001 From: Victor Boctor Date: Wed, 23 Mar 2016 20:23:53 -0700 Subject: [PATCH] Show tag description when hovering over a tag 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 --- core/print_api.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/print_api.php b/core/print_api.php index 903c5dbbae..8efbb1b00f 100644 --- a/core/print_api.php +++ b/core/print_api.php @@ -404,8 +404,8 @@ function print_tag_option_list( $p_bug_id = 0 ) { echo ''; foreach ( $t_rows as $t_row ) { - $t_string = $t_row['name']; - echo ''; + echo ''; } }