Opened 7 years ago
Closed 5 years ago
#13377 closed defect (worksforme)
"FIXED_" prefix causing issue of Trac/GUI "Modify Ticket"
Reported by: | Owned by: | Olli Kallioinen | |
---|---|---|---|
Priority: | normal | Component: | MultiSelectFieldPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 1.0 |
Description
Just noticed the Trac/GUI will show/set both "FIXED_xxxx" & "xxxx" when we click "Modify Ticket" even the ticket only set "xxxx" to the field originally.
Attachments (0)
Change History (5)
comment:1 Changed 7 years ago by
comment:2 follow-up: 4 Changed 7 years ago by
Yes, that's what I tested and you can put the following lines in trac.ini and verify it by youself:
test_two = text test_two.format = list test_two.label = ABC test_two.multiselect = true test_two.options = ABC100|FIXED_ABC100 test_two.order = 3
comment:3 Changed 7 years ago by
Ok, I checked with more different cases. The issue is related to the name of options. Like the following cases, all have the issues:
test_two.options = ABC100|xxxx_ABC100 test_two.options = ABC100|ABC100_xxxx
The issue is the second option can't be same as the first option with "_" separator
If I changed the options to the following cases, and it's normal:
test_two.options = ABC100|xxxx_aBC100 test_two.options = ABC100|abc100_xxx
comment:4 Changed 7 years ago by
Replying to anonymous:
Yes, that's what I tested and you can put the following lines in trac.ini and verify it by youself:
I tried and cannot reproduce with Trac 1.0-stable and r17049 of this plugin.
- Are you running the latest (r17049, 1.0.2dev)?
- Do you have other plugins installed?
- What do you mean by we click "Modify Ticket"? The only label Modify Ticket in the ticket view is the expander for the Change Properties section. Do you mean, submitting a ticket change for the
test_two
property withABC100
selected will result in the ticket field changing toABC100 FIXED_ABC100
?
comment:5 Changed 5 years ago by
Resolution: | → worksforme |
---|---|
Status: | new → closed |
Are you sure it's a problem with the multi select plugin? The plugin is rather simple and I don't think it's adding such a prefix anywhere (although I haven't used trac or the plugin for a long time). Maybe some other plugin combined with multi select is causing the issue.