Ticket #2583 (closed defect: fixed)
Not markuped "Ticket details" on timeline
| Reported by: | trac-ja@… | Owned by: | jonas |
|---|---|---|---|
| Priority: | normal | Milestone: | 0.9.4 |
| Component: | ticket system | Version: | 0.9.3 |
| Severity: | normal | Keywords: | |
| Cc: |
Description
On trac-0.9.3, Timeline event displays un-marked up messages, if "Ticket details" has some changed fields.
Here is a patch:
-
trac/ticket/web_ui.py
479 479 'updated by %s', summary, id, type, author) 480 480 message = util.Markup() 481 481 if len(field_changes) > 0: 482 message = util.Markup(', ' ).join(field_changes) + \483 ' changed.<br />' 482 message = util.Markup(', '.join(field_changes) + \ 483 ' changed.<br />') 484 484 message += wiki_to_oneliner(comment, self.env, db, 485 485 shorten=True, absurls=absurls) 486 486 yield 'editedticket', href, title, t, author, message
Attachments
Change History
Note: See
TracTickets for help on using
tickets.


