Ticket #4369 (closed defect: fixed)
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: |
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
Note: See
TracTickets for help on using
tickets.


