Opened 17 years ago
Closed 17 years ago
#140 closed defect (fixed)
HTMLFormFiller sometimes drops text data in option fields
Reported by: | jonas | Owned by: | cmlenz |
---|---|---|---|
Priority: | major | Milestone: | 0.5 |
Component: | General | Version: | devel |
Keywords: | Cc: |
Description
When the HTMLFormFiller filters a template it only keeps track of one (the last) TEXT event inside each option element. This results in data loss for more complicated templates where the TEXT data is fragmented into more than one event. For example:
<select name="foo"> <option value="1">foo $x bar</option> </select>
Is rendered as:
<select name="foo"> <option value="1" selected="selected">bar</option> </select>
Attachments (1)
Change History (2)
Changed 17 years ago by jonas
comment:1 Changed 17 years ago by jonas
- Resolution set to fixed
- Status changed from new to closed
Fixed in [698].
Note: See
TracTickets for help on using
tickets.
Proposed patch