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

schwern at bestpractical.com schwern at bestpractical.com
Tue Oct 31 20:53:45 EST 2006


Author: schwern
Date: Tue Oct 31 20:53:45 2006
New Revision: 6335

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

Log:
 r19455 at windhund:  schwern | 2006-09-29 04:36:54 -0400
 Quiet an uninit warning.


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	Tue Oct 31 20:53:45 2006
@@ -463,9 +463,10 @@
     #If the status is an inactive status, set the resolved date
     elsif ( $QueueObj->IsInactiveStatus( $args{'Status'} ) )
     {
-        $RT::Logger->debug(
-            "Got a $args{'Status'} ticket with no resolved date, set to now"
-        );
+        $RT::Logger->debug( "Got a "
+              . $args{'Status'}
+              . "ticket with a resolved of "
+              . ($args{'Resolved'} || '') );
         $Resolved->SetToNow;
     }
 


More information about the Rt-commit mailing list