Modify ↓
Opened 19 years ago
Closed 19 years ago
#4369 closed defect (fixed)
Verbose log view header says 'False'
| Reported by: | Owned by: | Matthew Good | |
|---|---|---|---|
| Priority: | normal | Milestone: | 0.11 |
| Component: | version control/log view | Version: | devel |
| Severity: | minor | Keywords: | |
| Cc: | Branch: | ||
| Release Notes: | |||
| API Changes: | |||
| Internal 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 (0)
Change History (2)
comment:1 by , 19 years ago
| Owner: | changed from to |
|---|---|
| Status: | new → assigned |
comment:2 by , 19 years ago
| Resolution: | → fixed |
|---|---|
| Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.



Fixed in r4437. Thanks.