Modify ↓
#4453 closed defect (fixed)
Typo in mimeview/api.py generates invalid HTML, breaking code preview
Reported by: | Owned by: | Christian Boos | |
---|---|---|---|
Priority: | high | Milestone: | 0.11 |
Component: | version control/browser | Version: | devel |
Severity: | normal | Keywords: | |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
In source:/trunk/trac/mimeview/api.py, around line 495, there's this piece of code:
def _head_row(): return tag.re(
This is most probably a typo, what was intended is return tag.tr(
. The <re>
tag genrated now badly breaks code preview in the browser.
Attachments (0)
Change History (2)
comment:1 by , 18 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:2 by , 18 years ago
Milestone: | → 0.11 |
---|
Note:
See TracTickets
for help on using tickets.
Thanks for the catch! Fixed in r4497.