rt 4.2.13 ticket#13852
[freeside.git] / rt / lib / RT / Condition / QueueChange.pm
index dab4299..73c1b84 100644 (file)
@@ -2,7 +2,7 @@
 #
 # COPYRIGHT:
 #
-# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
+# This software is Copyright (c) 1996-2016 Best Practical Solutions, LLC
 #                                          <sales@bestpractical.com>
 #
 # (Except where explicitly superseded by other copyright notices)
@@ -49,6 +49,7 @@
 package RT::Condition::QueueChange;
 use base 'RT::Condition';
 use strict;
+use warnings;
 
 =head2 IsApplicable
 
@@ -59,10 +60,10 @@ If the queue has changed.
 sub IsApplicable {
     my $self = shift;
     if ($self->TransactionObj->Field eq 'Queue') {
-           return(1);
-    } 
+        return(1);
+    }
     else {
-           return(undef);
+        return(undef);
     }
 }