diff options
author | till <till@php.net> | 2007-08-29 12:55:24 +0000 |
---|---|---|
committer | till <till@php.net> | 2007-08-29 12:55:24 +0000 |
commit | db401bfb0a3891b06a4c70207f88942e7628ac11 (patch) | |
tree | 03f0382ea1a5244b54687727b4a29d5a62eba336 /program | |
parent | 234c0d0ab051b308b922e6170419ebbc0636f93b (diff) |
# bugfix (thanks yllar)
Diffstat (limited to 'program')
-rw-r--r-- | program/include/rcube_shared.inc | 2 |
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])) { |