Modify ↓
Opened 19 years ago
Closed 19 years ago
#1984 closed defect (fixed)
Problem when updating ticket_type
Reported by: | anonymous | Owned by: | Jonas Borgström |
---|---|---|---|
Priority: | high | Milestone: | 0.9 |
Component: | ticket system | Version: | devel |
Severity: | minor | Keywords: | |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
When updating ticket types it is impossible to find column "ticket_type" in ticket table, becaused its named "type" there. And type=ticket_type in enum table.
To explain it easier it is solved by adding following at row 350 in model.py source:/trunk/trac/ticket/model.py#2127 (not so handsome :)
if self.type == 'ticket_type': self.type ='type'
Attachments (0)
Change History (1)
comment:1 by , 19 years ago
Milestone: | → 0.9 |
---|---|
Resolution: | → fixed |
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
This was fixed in [2344].