Modify ↓
Opened 14 years ago
Closed 8 years ago
#8104 closed defect (wontfix)
Slight modification to patch
Reported by: | Shawn O'Hail | Owned by: | Xavier Pechoultres |
---|---|---|---|
Priority: | low | Component: | TicketOwnerGroupPatch |
Severity: | minor | Keywords: | |
Cc: | Trac Release: | 0.12 |
Description
if you replace the line
possible_owners = cursor.fetchall()
with
possible_owners = [u[0] for u in cursor.fetchall()]
The pull-down menu will populate with user's full names when this patch is applied. Between the two patches I finally have sensible names in the Owner pull down so thank you!
Attachments (0)
Note: See
TracTickets for help on using
tickets.
Trac has equivalent functionality in 1.2 and later, see the <actionname>
.set_owner
attribute (TracWorkflow#BasicTicketWorkflowCustomization).