]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
More whitespace fixes. r=ssdbot. I've already talked to Alexandre
authorkiko%async.com.br <>
Fri, 6 Aug 2004 20:47:25 +0000 (20:47 +0000)
committerkiko%async.com.br <>
Fri, 6 Aug 2004 20:47:25 +0000 (20:47 +0000)
about this, won't happen again.

Bugzilla/Bug.pm

index 38ecf0848bba0d5daa288fe628033e04b3ae30c6..8863f5432fe620492ea1209c80ed6b4afba8a55b 100755 (executable)
@@ -493,9 +493,9 @@ sub EmitDependList {
 
 sub ValidateTime {
   my ($time, $field) = @_;
-    if ($time > 99999.99 || $time < 0 || !($time =~ /^(?:\d+(?:\.\d*)?|\.\d+)$/)){
-      ThrowUserError("need_positive_number", {field => "$field"}, "abort");
-    }
+  if ($time > 99999.99 || $time < 0 || !($time =~ /^(?:\d+(?:\.\d*)?|\.\d+)$/)) {
+    ThrowUserError("need_positive_number", {field => "$field"}, "abort");
+  }
 }
 
 sub AUTOLOAD {