Modify ↓
Ticket #4369 (closed defect: fixed)
Opened 5 years ago
Last modified 5 years ago
Verbose log view header says 'False'
| Reported by: | Tim Hatch <trac@…> | Owned by: | mgood |
|---|---|---|---|
| Priority: | normal | Milestone: | 0.11 |
| Component: | version control/log view | Version: | devel |
| Severity: | minor | Keywords: | |
| Cc: | |||
| Release Notes: | |||
| API Changes: | |||
Description
To reproduce:
View http://example.com/path-to-trac/log/?verbose=on in a browser. The rightmost column header probably ought to be blank (0.10 behavior) instead of saying "False".
There's an easy fix:
Index: templates/revisionlog.html
===================================================================
--- templates/revisionlog.html (revision 4434)
+++ templates/revisionlog.html (working copy)
@@ -93,7 +93,7 @@
<th class="chgset">Chgset</th>
<th class="date">Date</th>
<th class="author">Author</th>
- <th class="summary">${not verbose and 'Log Message'}</th>
+ <th class="summary">${not verbose and 'Log Message' or None}</th>
</tr>
</thead>
<tbody>
Attachments
Change History
comment:1 Changed 5 years ago by mgood
- Owner changed from cboos to mgood
- Status changed from new to assigned
comment:2 Changed 5 years ago by mgood
- Resolution set to fixed
- Status changed from assigned to closed
Note: See
TracTickets for help on using
tickets.



Fixed in r4437. Thanks.