Opened 5 years ago

Last modified 5 years ago

#13431 closed defect

Versionlist doesn't list linked versions — at Version 2

Reported by: Martijn Zeedijk Owned by:
Priority: normal Component: SimpleMultiProjectPlugin
Severity: normal Keywords:
Cc: Trac Release: 1.2

Description (last modified by Martijn Zeedijk)

When creating a ticket or modifying an existing ticket: When selecting a project, the versionslist only lists the first character of the versions linked to a project.

Change History (2)

comment:1 Changed 5 years ago by Martijn Zeedijk

I fixed the versionlist issue by changing line 59 of ticket.py from:

 project_versions[project].extend([version[0] for version in

to

 project_versions[project].extend([version for version in

Now the array smp_project_versions is filled with the full version name per project instead of only the first character.

Please review this.

comment:2 Changed 5 years ago by Martijn Zeedijk

Description: modified (diff)
Note: See TracTickets for help on using tickets.