Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.5
-
None
Description
gives the following examples:
<configuration>
<resolutionIds>Closed</resolutionIds>
<statusIds>Resolved, Closed</statusIds>
<typeIds>Bug, New Feature, Improvement, Wish</typeIds>
</configuration>
However, spaces are not always allowed, they can cause the field to be ignored.
<statusIds>Resolved,Closed</statusIds> - OK
<statusIds> Resolved,Closed</statusIds> - OK
<statusIds>Resolved,Closed </statusIds> - OK
<statusIds> Resolved,Closed </statusIds> - OK
<statusIds>Resolved, Closed</statusIds> - Closed is ignored
<statusIds> Resolved, Closed</statusIds> - Closed is ignored
<statusIds> Resolved, Closed </statusIds> - Closed is ignored
In particular, the example from the web page does not work.
Note that the typeIds field does appear to allow leading space after a comma.
The resolutionIds field does not.
Since spaces are sometimes allowed, may I suggest the code is fixed rather than the documentation?