diff options
author | timeless%mozdev.org <> | 2007-08-24 10:15:16 +0000 |
---|---|---|
committer | timeless%mozdev.org <> | 2007-08-24 10:15:16 +0000 |
commit | ab439a9ac6606f9382bf101b115bdb90bbd85e60 (patch) | |
tree | 8057c14c9c3b154503de03d66c2dcd292963651d /Bugzilla/WebService | |
parent | 938fdbf58ef07cc3f2398adbcea435250da15131 (diff) | |
download | bugs-ab439a9ac6606f9382bf101b115bdb90bbd85e60.tar bugs-ab439a9ac6606f9382bf101b115bdb90bbd85e60.tar.gz bugs-ab439a9ac6606f9382bf101b115bdb90bbd85e60.tar.bz2 bugs-ab439a9ac6606f9382bf101b115bdb90bbd85e60.tar.xz bugs-ab439a9ac6606f9382bf101b115bdb90bbd85e60.zip |
Bug 221827 Missing Bug ID shouldn't be handled as Invalid Bug ID
r=vladd a=mkanat
Diffstat (limited to 'Bugzilla/WebService')
-rwxr-xr-x | Bugzilla/WebService/Constants.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/WebService/Constants.pm b/Bugzilla/WebService/Constants.pm index 01359868a..24a0e5d43 100755 --- a/Bugzilla/WebService/Constants.pm +++ b/Bugzilla/WebService/Constants.pm @@ -51,8 +51,8 @@ use base qw(Exporter); # have to fix it here. use constant WS_ERROR_CODE => { # Bug errors usually occupy the 100-200 range. - invalid_bug_id_or_alias => 100, - invalid_bug_id_non_existent => 101, + improper_bug_id_field_value => 100, + bug_id_does_not_exist => 101, bug_access_denied => 102, invalid_field_name => 108, # These all mean "invalid alias" |