Modify ↓
#5858 closed defect (fixed)
Code inserted is not XHTML valid
| Reported by: | Mitar | Owned by: | Dave |
|---|---|---|---|
| Priority: | normal | Component: | TimelineUserFilterPlugin |
| Severity: | normal | Keywords: | |
| Cc: | Mitar | 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 16 years ago by
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
comment:2 Changed 16 years ago by
(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.