[Rt-commit] r6115 - in rt/branches/3.7-EXPERIMENTAL: .

schwern at bestpractical.com schwern at bestpractical.com
Fri Sep 29 05:35:12 EDT 2006


Author: schwern
Date: Fri Sep 29 05:35:11 2006
New Revision: 6115

Modified:
   rt/branches/3.7-EXPERIMENTAL/   (props changed)
   rt/branches/3.7-EXPERIMENTAL/lib/RT/Ticket_Overlay.pm

Log:
 r19466 at Master-Windhund-IV:  schwern | 2006-09-29 02:35:02 -0700
 Ruz pointed out $args{Resolved} can never exist in that debug statement


Modified: rt/branches/3.7-EXPERIMENTAL/lib/RT/Ticket_Overlay.pm
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL/lib/RT/Ticket_Overlay.pm	(original)
+++ rt/branches/3.7-EXPERIMENTAL/lib/RT/Ticket_Overlay.pm	Fri Sep 29 05:35:11 2006
@@ -463,10 +463,9 @@
     #If the status is an inactive status, set the resolved date
     if ( $QueueObj->IsInactiveStatus( $args{'Status'} ) && !$args{'Resolved'} )
     {
-        $RT::Logger->debug( "Got a "
-              . $args{'Status'}
-              . "ticket with a resolved of "
-              . ($args{'Resolved'} || '') );
+        $RT::Logger->debug(
+            "Got a $args{'Status'} ticket with no resolved date"
+        );
         $Resolved->SetToNow;
     }
 


More information about the Rt-commit mailing list