Edgewall Software
Modify

Opened 18 years ago

Closed 18 years ago

#4369 closed defect (fixed)

Verbose log view header says 'False'

Reported by: Tim Hatch <trac@…> 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 Matthew Good, 18 years ago

Owner: changed from Christian Boos to Matthew Good
Status: newassigned

comment:2 by Matthew Good, 18 years ago

Resolution: fixed
Status: assignedclosed

Fixed in r4437. Thanks.

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain Matthew Good.
The resolution will be deleted. Next status will be 'reopened'.
to The owner will be changed from Matthew Good to the specified user.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.