Commit d0b82de8 authored by bugreport%peshkin.net's avatar bugreport%peshkin.net

Bug 253447: Fix unhelpful error if user enters text in "blocks" field

r=kiko a=justdave
parent 82357809
...@@ -157,7 +157,7 @@ sub ValidateBugID { ...@@ -157,7 +157,7 @@ sub ValidateBugID {
my $alias = $id; my $alias = $id;
if (!detaint_natural($id)) { if (!detaint_natural($id)) {
$id = BugAliasToID($alias); $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, # Modify the calling code's original variable to contain the trimmed,
......
...@@ -356,15 +356,13 @@ ...@@ -356,15 +356,13 @@
[% ELSIF error == "invalid_bug_id_or_alias" %] [% ELSIF error == "invalid_bug_id_or_alias" %]
[% title = BLOCK %]Invalid [% terms.Bug %] ID[% END %] [% title = BLOCK %]Invalid [% terms.Bug %] ID[% END %]
The '[% terms.bug %] number' <em>[% bug_id FILTER html %]</em> is invalid. '[% bug_id FILTER html %]' is not a valid [% terms.bug %] number.
[% IF Param("usebugaliases") %] [% IF Param("usebugaliases") %]
It is neither [% terms.abug %] number nor an alias to [% terms.abug %] It is neither [% terms.abug %] number nor an alias to [% terms.abug %]
number. number.
[% END %] [% END %]
If you are trying to use QuickSearch, you need to enable JavaScript If you are trying to use QuickSearch, you need to enable JavaScript
in your browser. To help us fix this limitation, add your comments to in your browser.
<a href="http://bugzilla.mozilla.org/show_bug.cgi?id=70907">b<!--
word broken up to pass test 009 -->ug 70907</a>.
[% ELSIF error == "invalid_changedsince" %] [% ELSIF error == "invalid_changedsince" %]
[% title = "Invalid 'Changed Since'" %] [% title = "Invalid 'Changed Since'" %]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment