summaryrefslogtreecommitdiff
path: root/program
diff options
context:
space:
mode:
authortill <till@php.net>2007-08-29 12:55:24 +0000
committertill <till@php.net>2007-08-29 12:55:24 +0000
commitdb401bfb0a3891b06a4c70207f88942e7628ac11 (patch)
tree03f0382ea1a5244b54687727b4a29d5a62eba336 /program
parent234c0d0ab051b308b922e6170419ebbc0636f93b (diff)
# bugfix (thanks yllar)
Diffstat (limited to 'program')
-rw-r--r--program/include/rcube_shared.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_shared.inc b/program/include/rcube_shared.inc
index a86a3c048..5349ad0dd 100644
--- a/program/include/rcube_shared.inc
+++ b/program/include/rcube_shared.inc
@@ -540,7 +540,7 @@ function rc_request_header($name)
else
{
$key = 'HTTP_' . strtoupper(strtr($name, '-', '_'));
- $hdrs = array_change_key_case($_SERVER[$key], CASE_UPPER);
+ $hdrs = array_change_key_case($_SERVER, CASE_UPPER);
}
if (isset($hdrs[$key]))
{