rt 4.2.14 (#13852)
[freeside.git] / rt / lib / RT / Condition / PriorityExceeds.pm
index 16f250e..657d65f 100644 (file)
@@ -2,7 +2,7 @@
 #
 # COPYRIGHT:
 #
-# This software is Copyright (c) 1996-2015 Best Practical Solutions, LLC
+# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC
 #                                          <sales@bestpractical.com>
 #
 # (Except where explicitly superseded by other copyright notices)
@@ -60,10 +60,10 @@ If the priority exceeds the argument value
 sub IsApplicable {
     my $self = shift;
     if ($self->TicketObj->Priority > $self->Argument)  {
-       return(1);
-    } 
+        return(1);
+    }
     else {
-       return(undef);
+        return(undef);
     }
 }