From 1036f81edf2e23fe0052e5a8ba8002a8adcc4f9a Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Mon, 11 Apr 2011 07:00:30 -0400 Subject: [PATCH] - Fix so 1024 bytes is displayed as 1KB, the same for MB and GB --- program/steps/utils/error.inc | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/program/steps/utils/error.inc b/program/steps/utils/error.inc index c472faa..8b04969 100644 --- a/program/steps/utils/error.inc +++ b/program/steps/utils/error.inc @@ -5,7 +5,7 @@ | program/steps/utils/error.inc | | | | This file is part of the Roundcube Webmail client | - | Copyright (C) 2005-2010, Roundcube Dev. - Switzerland | + | Copyright (C) 2005-2011, The Roundcube Dev Team | | Licensed under the GNU GPL | | | | PURPOSE: | @@ -47,6 +47,13 @@ "Please contact your server-administrator."; } +// forbidden due to request check +else if ($ERROR_CODE==403) { + $__error_title = "REQUEST CHECK FAILED"; + $__error_text = "Access to this service was denied due to failing security checks!<br />\n". + "Please contact your server-administrator."; +} + // failed request (wrong step in URL) else if ($ERROR_CODE==404) { $__error_title = "REQUEST FAILED/FILE NOT FOUND"; -- Gitblit v1.9.1