Changes between Initial Version and Version 1 of Ticket #10519


Ignore:
Timestamp:
Oct 21, 2012, 11:36:35 PM (12 years ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #10519 – Description

    initial v1  
    22
    33Line 180 in trac/ticket/notification.py looks like this:
     4{{{
     5#!python
     6        for change in TicketModule(self.env).grouped_changelog_entries(ticket, when=modtime):
     7}}}
    48
    5         for change in TicketModule(self.env).grouped_changelog_entries(ticket, when=modtime):
     9The call to `grouped_changelog_entries()` returnes an empty list when using gridmod, but NOT when using the Trac UI. The result is that the notification flow is not updated correctly. In the `ticket_notify_email.txt` the `$changes_body` won't be set correctly, which means that the email notification doesn't show WHAT was changed using gridmod.
    610
    7 The call to "grouped_changelog_entries()" returnes an empty list when using gridmod, but NOT when using the Trac UI. The result is that the notification flow is not updated correctly. In the ticket_notify_email.txt the $changes_body won't be set correctly, which means that the email notification doesn't show WHAT was changed using gridmod.
    8 
    9 Don't know if this is related to the 1.0 release.
    10 
    11 
     11Don't know if this is related to the 1.0 release.