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

kevinr at bestpractical.com kevinr at bestpractical.com
Tue Aug 8 21:00:32 EDT 2006


Author: kevinr
Date: Tue Aug  8 21:00:32 2006
New Revision: 5728

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

Log:
 r17938 at sad-girl-in-snow:  kevinr | 2006-08-08 20:59:23 -0400
 * Fixed a logic bug in how we were positioning the separator.


Modified: rt/branches/3.6-RELEASE/html/Ticket/Elements/Tabs
==============================================================================
--- rt/branches/3.6-RELEASE/html/Ticket/Elements/Tabs	(original)
+++ rt/branches/3.6-RELEASE/html/Ticket/Elements/Tabs	Tue Aug  8 21:00:32 2006
@@ -181,8 +181,8 @@
 }
 }
 
-if (   defined $actions->{A} || defined $actions->{B} || defined $actions->{C}
-    && defined $actions->{E} || defined $actions->{F} || defined $actions->{G}) {
+if ( (defined $actions->{A} || defined $actions->{B} || defined $actions->{C})
+    && (defined $actions->{E} || defined $actions->{F} || defined $actions->{G}) ) { 
     
     if    (defined $actions->{C}) { $actions->{C}->{separator} = 1 }
     elsif (defined $actions->{B}) { $actions->{B}->{separator} = 1 }


More information about the Rt-commit mailing list