diff options
| author | till <till@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2007-08-29 12:55:24 +0000 |
|---|---|---|
| committer | till <till@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2007-08-29 12:55:24 +0000 |
| commit | 8efe8f1accd963b5ea7c9da68c50d3e0af4f547f (patch) | |
| tree | d3f36140348c994aa60fc497ea7d73046d3a4a82 | |
| parent | ef71dcd69966886af8f5cf46b3e1a4d2adbc3fe2 (diff) | |
# bugfix (thanks yllar)
git-svn-id: https://svn.roundcube.net/trunk@741 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/include/rcube_shared.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_shared.inc b/roundcubemail/program/include/rcube_shared.inc index a86a3c048..5349ad0dd 100644 --- a/roundcubemail/program/include/rcube_shared.inc +++ b/roundcubemail/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])) { |
