From 7e6f8dbfebfeda16a14f951370f31ee5fad9e0ee Mon Sep 17 00:00:00 2001 From: "burnus%gmx.de" <> Date: Tue, 29 Apr 2003 01:29:34 +0000 Subject: Bug 200198 - user-error.html.tmpl's use [% changedsince %] instead of $changedsince r=gerv, a=justdave --- duplicates.cgi | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'duplicates.cgi') diff --git a/duplicates.cgi b/duplicates.cgi index 64a3f7ab3..dc65ef502 100755 --- a/duplicates.cgi +++ b/duplicates.cgi @@ -137,6 +137,15 @@ while (my ($key, $value) = each %count) { delete $count{$key} if $sortvisible && (lsearch(\@buglist, $key) == -1); } +my $origmaxrows = $maxrows; +detaint_natural($maxrows) + || ThrowUserError("invalid_maxrows", { maxrows => $origmaxrows}); + +my $origchangedsince = $changedsince; +detaint_natural($changedsince) + || ThrowUserError("invalid_changedsince", + { changedsince => $origchangedsince }); + # Try and open the database from "changedsince" days ago my $dobefore = 0; my %delta; @@ -159,15 +168,6 @@ if (!tie(%before, 'AnyDBM_File', "data/duplicates/dupes$whenever", $dobefore = 1; } -my $origmaxrows = $maxrows; -detaint_natural($maxrows) - || ThrowUserError("invalid_maxrows", { maxrows => $origmaxrows}); - -my $origchangedsince = $changedsince; -detaint_natural($changedsince) - || ThrowUserError("invalid_changedsince", - { changedsince => $origchangedsince }); - my @bugs; my @bug_ids; -- cgit v1.2.3-24-g4f1b