]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/request/html/class_HtmlRequest.php
Method convertToClassName() and convertDashesToUnderscores() are now static as
[core.git] / inc / classes / main / request / html / class_HtmlRequest.php
index e808c7109776f1b9d1557b63cac3c5132c362744..edf9c9a412c00e9268f8bc151dcf1631a110858f 100644 (file)
@@ -102,7 +102,7 @@ class HtmlRequest extends BaseRequest implements Requestable {
                $headerValue = NULL;
 
                // Construct the name
-               $name = 'HTTP_' . strtoupper($this->convertDashesToUnderscores($headerName));
+               $name = 'HTTP_' . strtoupper(self::convertDashesToUnderscores($headerName));
 
                // Does this header exist?
                if (isset($_SERVER[$name])) {