Removing number from sumary on bug view

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
truefriend-cz
Posts: 66
Joined: 08 Jan 2019, 07:14

Removing number from sumary on bug view

Post by truefriend-cz »

Edit: Solved - Solution end of this thread

I can use some mantis function for modify in bug_view_inc.php line 652:

Code: Select all

echo '<td class="bug-summary" colspan="5">', $t_summary, '</td>';
for show summary only (without number and ": " string)?

Thanks
2019-01-23_233954.png
2019-01-23_233954.png (34.68 KiB) Viewed 3703 times

Edit: Solved:

Code: Select all

echo '<td class="bug-summary" colspan="5">' . $t_bug->summary . '</td>';
Mantis version: 2.23.0, OS: Windows, PHP: 7.3, Charset (PHP, Database): UTF-8, and: little, bad english
Post Reply