Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add a link (inside Mantis) to a note/comment?

Tags:

mantis

Creating a link to an issue in Mantis is done via the hash symbol # followed by the issue number.

  • Example: #123

How do I link to a note?

like image 526
udo Avatar asked May 04 '11 17:05

udo


2 Answers

Use the ~ symbol, i.e ~42 to link to the bugnote with the id 42. The prefix is configurable using the $g_bugnote_link_tag setting.

A little clarification, if needed, taken from here: the ~ notation works a little different according to MantisBT version. In 1.1.x shows only the NoteID (e.g., 0026006), but since 1.2.x and above, the link was changed to IssueID:NoteID (e.g., 0009261:0026006).

like image 119
Robert Munteanu Avatar answered Nov 08 '22 10:11

Robert Munteanu


Form this : http://inform7.com/mantis/view.php?id=259 :

 Also for future reference: you can link to another issue by prefixing
 the issue number with #, or link to a comment by prefixing the comment
 number with ~.


 # 259 (without the space) => 0000259
 ~ 559 (without the space) => 0000259:0000559
like image 29
Vouze Avatar answered Nov 08 '22 12:11

Vouze