mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 09:19:15 -04:00
- Don't use trac/plugin.mk which is now empty and unneeded - Add some NO_ARCH'es - Add/fix some LICENSEs and LICENSE_FILES - Pet portlint - Regenerate some patches Approved by: portmgr blanket
20 lines
1.1 KiB
Python
20 lines
1.1 KiB
Python
--- tracsubtickets/api.py.orig 2012-10-27 18:40:31 UTC
|
|
+++ tracsubtickets/api.py
|
|
@@ -153,7 +153,7 @@ class SubTicketsSystem(Component):
|
|
(parent, ticket.id))
|
|
# add a comment to old parent
|
|
xticket = Ticket(self.env, parent)
|
|
- xticket.save_changes(author, _('Remove a subticket #%s.') % ticket.id)
|
|
+ xticket.save_changes(author, _('Remove a subticket #%s. (%s)') % (ticket.id, ticket['summary']))
|
|
tn = TicketNotifyEmail(self.env)
|
|
tn.notify(xticket, newticket=False, modtime=xticket['changetime'])
|
|
|
|
@@ -164,7 +164,7 @@ class SubTicketsSystem(Component):
|
|
(parent, ticket.id))
|
|
# add a comment to new parent
|
|
xticket = Ticket(self.env, parent)
|
|
- xticket.save_changes(author, _('Add a subticket #%s.') % ticket.id)
|
|
+ xticket.save_changes(author, _('Add a subticket #%s. (%s)') % (ticket.id, ticket['summary']))
|
|
tn = TicketNotifyEmail(self.env)
|
|
tn.notify(xticket, newticket=False, modtime=xticket['changetime'])
|
|
|