diff options
author | bugreport%peshkin.net <> | 2004-07-30 19:37:02 +0200 |
---|---|---|
committer | bugreport%peshkin.net <> | 2004-07-30 19:37:02 +0200 |
commit | d0b82de8afb79809f8ecc3d39c337b2bcf46b0bc (patch) | |
tree | bb4b6f68da95eda2bea8202bf502aac08c8b34f3 /CGI.pl | |
parent | 82357809ddc5fcc41680149d1ad7a27045bbdaf9 (diff) | |
download | bugzilla-d0b82de8afb79809f8ecc3d39c337b2bcf46b0bc.tar.gz bugzilla-d0b82de8afb79809f8ecc3d39c337b2bcf46b0bc.tar.xz |
Bug 253447: Fix unhelpful error if user enters text in "blocks" field
r=kiko
a=justdave
Diffstat (limited to 'CGI.pl')
-rw-r--r-- | CGI.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -157,7 +157,7 @@ sub ValidateBugID { my $alias = $id; if (!detaint_natural($id)) { $id = BugAliasToID($alias); - $id || ThrowUserError("invalid_bug_id_or_alias", {'bug_id' => $id}); + $id || ThrowUserError("invalid_bug_id_or_alias", {'bug_id' => $alias}); } # Modify the calling code's original variable to contain the trimmed, |