Edgewall Software

Changeset 7382

Show
Ignore:
Timestamp:
07/23/2008 08:46:56 PM (5 weeks ago)
Author:
cboos
Message:

Show deleted values in ticket change summaries.

Patch contributed by Remy Blank. Closes #3838.

Location:
branches/0.11-stable/trac/ticket/templates
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/0.11-stable/trac/ticket/templates/ticket.html

    r7086 r7382  
    6565              set to <em>${field.new}</em> 
    6666            </py:when> 
    67             <py:otherwise>deleted</py:otherwise> 
     67            <py:otherwise> 
     68              <em>${field.old}</em> deleted 
     69            </py:otherwise> 
    6870          </py:choose> 
    6971        </li> 
  • branches/0.11-stable/trac/ticket/templates/ticket.rss

    r7381 r7382  
    3333              </py:when> 
    3434              <py:when test="value.new"> 
    35                 changed from &lt;em&gt;$value.old&lt;/em&gt; to &lt;em&gt;$value.new&lt;/em&gt;. 
     35                changed from &lt;em&gt;$value.old&lt;/em&gt; to &lt;em&gt;$value.new&lt;/em&gt; 
    3636              </py:when> 
    3737              <py:otherwise> 
    38                 deleted 
     38                &lt;em&gt;$value.old&lt;/em&gt; deleted 
    3939              </py:otherwise> 
    4040            </py:choose>