diff options
author | mkanat%bugzilla.org <> | 2008-06-20 11:03:44 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2008-06-20 11:03:44 +0200 |
commit | 6fed6bcbf8e8a7234bfdd45441bfec22c7de3430 (patch) | |
tree | bfabf9eb97d0837bd324b66762fd29de3e06b34c /template | |
parent | 120fd9858589152d99050bdaba622d0bac60e84c (diff) | |
download | bugzilla-6fed6bcbf8e8a7234bfdd45441bfec22c7de3430.tar.gz bugzilla-6fed6bcbf8e8a7234bfdd45441bfec22c7de3430.tar.xz |
Bug 432916: Expose usermatchmode via WebServices (User.get match argument)
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=dkl, a=mkanat
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index 2d5c3b355..804a1913b 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -1556,6 +1556,16 @@ for at least one component. For this reason, you cannot delete the account at this time. + [% ELSIF error == "user_access_by_id_denied" %] + [% title = "User Access By Id Denied" %] + Logged-out users cannot use the "ids" argument to this function + to access any user information. + + [% ELSIF error == "user_access_by_match_denied" %] + [% title = "User-Matching Denied" %] + Logged-out users cannot use the "match" argument to this function + to access any user information. + [% ELSIF error == "user_login_required" %] [% title = "Login Name Required" %] [% admindocslinks = {'useradmin.html' => 'User administration'} %] @@ -1596,11 +1606,6 @@ [% title = "Illegal User ID" %] User ID '[% userid FILTER html %]' is not valid integer. - [% ELSIF error == "user_access_by_id_denied" %] - [% title = "User Access By Id Denied" %] - Logged-out users cannot use the "ids" argument to this function - to access any user information. - [% ELSE %] [%# Try to find hooked error messages %] |