mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Changing to be compatible with PHP 5.2+
This commit is contained in:
parent
af06b8f179
commit
547f48fb03
1 changed files with 1 additions and 1 deletions
|
@ -459,7 +459,7 @@ class HttpSocket extends CakeSocket {
|
||||||
if (!App::import('Lib', 'http/' . $authClass)) {
|
if (!App::import('Lib', 'http/' . $authClass)) {
|
||||||
throw new Exception(__('Unknown authentication method.'));
|
throw new Exception(__('Unknown authentication method.'));
|
||||||
}
|
}
|
||||||
$authClass::authentication($this);
|
call_user_func("$authClass::authentication", $this);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue