diff options
| author | kiko%async.com.br <> | 2004-08-06 20:47:25 +0000 |
|---|---|---|
| committer | kiko%async.com.br <> | 2004-08-06 20:47:25 +0000 |
| commit | d7a8d47bebd3e45bb9b508e38e594a7b90407a06 (patch) | |
| tree | f3c8e7fd1074f37bc430ccd619db9d5d88fe59b0 /Bugzilla | |
| parent | 748942ad13661d5e73ef8555ede190aad7038c35 (diff) | |
| download | bugs-d7a8d47bebd3e45bb9b508e38e594a7b90407a06.tar bugs-d7a8d47bebd3e45bb9b508e38e594a7b90407a06.tar.gz bugs-d7a8d47bebd3e45bb9b508e38e594a7b90407a06.tar.bz2 bugs-d7a8d47bebd3e45bb9b508e38e594a7b90407a06.tar.xz bugs-d7a8d47bebd3e45bb9b508e38e594a7b90407a06.zip | |
More whitespace fixes. r=ssdbot. I've already talked to Alexandre
about this, won't happen again.
Diffstat (limited to 'Bugzilla')
| -rwxr-xr-x | Bugzilla/Bug.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index 38ecf0848..8863f5432 100755 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -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 { |
