Edgewall Software
Modify

Opened 19 years ago

Closed 19 years ago

#2583 closed defect (fixed)

Not markuped "Ticket details" on timeline

Reported by: trac-ja@… 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

     
    479479                                    'updated by %s', summary, id, type, author)
    480480                message = util.Markup()
    481481                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 />')
    484484                message += wiki_to_oneliner(comment, self.env, db,
    485485                                            shorten=True, absurls=absurls)
    486486                yield 'editedticket', href, title, t, author, message

Attachments (0)

Change History (2)

comment:1 by Christopher Lenz, 19 years ago

Milestone: 0.9.4

Bah, one got through :-P

comment:2 by Christian Boos, 19 years ago

Resolution: fixed
Status: newclosed

Yep, already committed as r2755 :)

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain Jonas Borgström.
The resolution will be deleted. Next status will be 'reopened'.
to The owner will be changed from Jonas Borgström to the specified user.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.