Modify ↓
Opened 19 years ago
Closed 19 years ago
#2583 closed defect (fixed)
Not markuped "Ticket details" on timeline
Reported by: | Owned by: | Jonas Borgström | |
---|---|---|---|
Priority: | normal | Milestone: | 0.9.4 |
Component: | ticket system | Version: | 0.9.3 |
Severity: | normal | Keywords: | |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
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 (0)
Change History (2)
comment:1 by , 19 years ago
Milestone: | → 0.9.4 |
---|
comment:2 by , 19 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Yep, already committed as r2755 :)
Note:
See TracTickets
for help on using tickets.
Bah, one got through :-P