diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2011-12-27 11:51:18 +0100 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2011-12-27 11:51:18 +0100 |
commit | 0c1be6cbd0a992a8ddf932d5c0bf08586c8a409e (patch) | |
tree | 7e1fd8c1b4c1bef0133d75cdb9502892d86984bb /lib | |
parent | dbff023bb075e839194bacb03204cedbd067df39 (diff) | |
download | webadmin-0c1be6cbd0a992a8ddf932d5c0bf08586c8a409e.tar.gz |
The function is called get_request_header, not request_header
Diffstat (limited to 'lib')
-rw-r--r-- | lib/kolab_utils.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/kolab_utils.php b/lib/kolab_utils.php index 1acd4ba..db10060 100644 --- a/lib/kolab_utils.php +++ b/lib/kolab_utils.php @@ -13,7 +13,7 @@ class kolab_utils * * @return mixed Header value or null if not available */ - public static function request_header($name) + public static function get_request_header($name) { if (function_exists('getallheaders')) { $hdrs = array_change_key_case(getallheaders(), CASE_UPPER); |