diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2013-09-26 17:06:28 +0200 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2013-09-26 17:06:28 +0200 |
commit | feeccb6a9e435932346d6a9ddeeb12c969362177 (patch) | |
tree | a60fa68c9ca2ca8148de72764e2ac74d65a7cc72 /template/en | |
parent | 186374529e05a18e216ee96675d80488289c9c42 (diff) | |
download | bugzilla-feeccb6a9e435932346d6a9ddeeb12c969362177.tar.gz bugzilla-feeccb6a9e435932346d6a9ddeeb12c969362177.tar.xz |
Bug 917669 - invalid or expired authentication tokens and cookies should throw errors, not be silently ignored
r/a=glob
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index 038704c34..1a3aa07ac 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -1054,6 +1054,11 @@ the "Forgot Password" link. [% END %] + [% ELSIF error == "invalid_cookies_or_token" %] + [% title = "Invalid Cookies or Token" %] + The cookies or token provide were not valid or have expired. + You may login again to get new cookies or a new token. + [% ELSIF error == "json_rpc_get_method_required" %] When using JSON-RPC over GET, you must specify a 'method' parameter. See the documentation at |