Edgewall Software

Ticket #2583 (closed defect: fixed)

Opened 3 years ago

Last modified 3 years ago

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

     
    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

Change History

Changed 3 years ago by cmlenz

  • milestone set to 0.9.4

Bah, one got through :-P

Changed 3 years ago by cboos

  • status changed from new to closed
  • resolution set to fixed

Yep, already committed as r2755 :)

Add/Change #2583 (Not markuped "Ticket details" on timeline)

Author



Change Properties
<Author field>
Action
as closed
Next status will be 'reopened'
 
Note: See TracTickets for help on using tickets.