We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3ac22e commit cb2b4acCopy full SHA for cb2b4ac
classes/Authentication/BaseHttpAuthentication.php
@@ -26,6 +26,8 @@ public function __construct() {
26
$this->name = $vals[0];
27
$this->password = $vals[1];
28
}
29
+ } elseif (isset($_SERVER['HTTP_AUTHORIZATION'])) {
30
+ list($this->name, $this->password) = explode(':', base64_decode(substr($_SERVER['HTTP_AUTHORIZATION'], 6)));
31
32
33
0 commit comments