From: kiko%async.com.br <> Date: Thu, 5 Aug 2004 20:51:23 +0000 (+0000) Subject: Whitespace fixes. r=ssdbot X-Git-Tag: bugzilla-2.19.1~93 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=22c2767cefa1dbb9784f755a51b9e4ff0adb202c;p=thirdparty%2Fbugzilla.git Whitespace fixes. r=ssdbot --- diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index 31b48649b8..38ecf0848b 100755 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -491,12 +491,12 @@ sub EmitDependList { return @list; } -sub ValidateTime{ +sub ValidateTime { my ($time, $field) = @_; if ($time > 99999.99 || $time < 0 || !($time =~ /^(?:\d+(?:\.\d*)?|\.\d+)$/)){ ThrowUserError("need_positive_number", {field => "$field"}, "abort"); } - } +} sub AUTOLOAD { use vars qw($AUTOLOAD);