[Rt-commit] r8471 - in rt/branches/3.6-RELEASE: .

jesse at bestpractical.com jesse at bestpractical.com
Thu Aug 9 11:26:00 EDT 2007


Author: jesse
Date: Thu Aug  9 11:26:00 2007
New Revision: 8471

Modified:
   rt/branches/3.6-RELEASE/   (props changed)
   rt/branches/3.6-RELEASE/html/Elements/ShowCustomFields

Log:
 r65323 at pinglin:  jesse | 2007-08-09 11:25:41 -0400
 *( Fix a bug (?) where a 0 was displayed after a value for multiple-values
 custom fields. - Quentin Garnier
 
 


Modified: rt/branches/3.6-RELEASE/html/Elements/ShowCustomFields
==============================================================================
--- rt/branches/3.6-RELEASE/html/Elements/ShowCustomFields	(original)
+++ rt/branches/3.6-RELEASE/html/Elements/ShowCustomFields	Thu Aug  9 11:26:00 2007
@@ -59,7 +59,9 @@
 % } else {
 <ul>
 % while ( my $Value = $Values->Next ) {
-<li><% $print_value->( $CustomField, $Value ) |n %></li>
+<li>
+% $print_value->( $CustomField, $Value );
+</li>
 % }
 </ul>
 % }


More information about the Rt-commit mailing list