Modify ↓
#5858 closed defect (fixed)
Code inserted is not XHTML valid
| Reported by: | mitar | Owned by: | daveappendix |
|---|---|---|---|
| Priority: | normal | Component: | TimelineUserFilterPlugin |
| Severity: | normal | Keywords: | |
| Cc: | mmitar@… | Trac Release: | 0.11 |
Description
Code inserted is not XHTML valid. Around <label> should be a <div>. Fix is simple, just add tag.div(...) around result in _user_field_input:
def _user_field_input(self, req):
return tag.div(tag.label("Filter users: ",
tag.input(type="text",
name="users",
value=req.args.get('users', ''),
style_="width:60%")))
Attachments (0)
Change History (2)
comment:1 Changed 3 years ago by asic_druide
- Resolution set to fixed
- Status changed from new to closed
comment:2 Changed 3 years ago by daveappendix
(In [7595]) Patch from asic_druide to fix #5400, #5421 and #5858. Thanks!
Note: See
TracTickets for help on using
tickets.


Attached version fixes #5400, #5421 and #5858.