Modify ↓
Opened 15 years ago
Closed 15 years ago
#8901 closed defect (fixed)
[PATCH] Unified diff is broken in changeset view on 0.12dev
Reported by: | Owned by: | Christian Boos | |
---|---|---|---|
Priority: | normal | Milestone: | 0.12 |
Component: | version control/changeset view | Version: | 0.12dev |
Severity: | normal | Keywords: | patch |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
We use Trac-0.12dev_r8725, in changeset view, unified diff is broken. The problem will be fixed by this patch.
-
trac/htdocs/js/diff.js
1 1 (function($){ 2 2 3 3 function convertDiff(name, table, pre) { 4 var inline = table.className == 'inline';4 var inline = $(table).hasClass('inline'); 5 5 var ths = table.tHead.rows[0].cells; 6 6 var afile, bfile; 7 7 if ( inline ) {
Attachments (0)
Change History (2)
comment:1 by , 15 years ago
Keywords: | patch added |
---|---|
Owner: | set to |
comment:2 by , 15 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Patch applied in r8957, thanks!
Note:
See TracTickets
for help on using tickets.
Self-illustrating problem report ;-)
Thanks for the patch!