Changeset 1175
- Timestamp:
- 01/23/2015 07:14:39 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/trac.wordpress.org/patches/notifications.diff
r371 r1175 63 63 + 64 64 + # Add individual ticket subscribers 65 + for row in db("""SELECT username FROM _ticket_subs WHERE ticket = %s AND status = 1""", (tktid,)):65 + for row in db("""SELECT username FROM _ticket_subs WHERE ticket = %s AND status > 0""", (tktid,)): 66 66 + torecipients.append(row[0]) 67 67 +
Note: See TracChangeset
for help on using the changeset viewer.