From 63b72786f32e5c58a584272d4b6923ebdc240b2d Mon Sep 17 00:00:00 2001 From: fuyun Date: Thu, 11 Feb 2021 01:39:47 +0800 Subject: [PATCH] Clickable summaries in view issues page Fixes #8066, PR https://github.com/mantisbt/mantisbt/pull/1235 --- core/columns_api.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/columns_api.php b/core/columns_api.php index 555cf6ea27..d6078f078f 100644 --- a/core/columns_api.php +++ b/core/columns_api.php @@ -1508,8 +1508,9 @@ function print_column_summary( BugData $p_bug, $p_columns_target = COLUMNS_TARGE } else { $t_summary = string_display_line_links( $p_bug->summary ); } - - echo '' . $t_summary . ''; + + $t_bug_url = string_get_bug_view_url( $p_bug->id ); + echo '' . $t_summary . ''; } /**