[Rt-commit] r8670 - rt/branches/3.6-RELEASE/html/Ticket/Elements

nicholas at bestpractical.com nicholas at bestpractical.com
Tue Aug 21 10:28:39 EDT 2007


Author: nicholas
Date: Tue Aug 21 10:28:28 2007
New Revision: 8670

Modified:
   rt/branches/3.6-RELEASE/html/Ticket/Elements/ShowTransactionAttachments

Log:
<div class="messagebody"> is opened within 
  foreach my $message ( grep { $_->Parent == $Parent } @$Attachments ) {
but was being closed (erroneously) just beyond the foreach. This could result
in lots of orphaned </div> tags.


Modified: rt/branches/3.6-RELEASE/html/Ticket/Elements/ShowTransactionAttachments
==============================================================================
--- rt/branches/3.6-RELEASE/html/Ticket/Elements/ShowTransactionAttachments	(original)
+++ rt/branches/3.6-RELEASE/html/Ticket/Elements/ShowTransactionAttachments	Tue Aug 21 10:28:28 2007
@@ -176,9 +176,9 @@
     ParentObj => $message
 );
 
-}
 </%PERL>
 </div>
+% }
 <%ARGS>
 $Ticket => undef
 $Transaction => undef


More information about the Rt-commit mailing list