mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 01:52:22 +03:00
Corrected exception handling, the app must stop the execution and through the exception response.
This commit is contained in:
parent
523f4a3e76
commit
02ac330b3b
1 changed files with 2 additions and 2 deletions
|
@ -46,7 +46,7 @@ class API_V1_Controller extends CI_Controller {
|
|||
$authorization = new \EA\Engine\Api\V1\Authorization($this);
|
||||
$authorization->basic($username, $password);
|
||||
} catch(\Exception $exception) {
|
||||
$this->_handleException($exception);
|
||||
exit($this->_handleException($exception));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -56,7 +56,7 @@ class API_V1_Controller extends CI_Controller {
|
|||
protected function _requestAuthentication() {
|
||||
header('WWW-Authenticate: Basic realm="Easy!Appointments"');
|
||||
header('HTTP/1.0 401 Unauthorized');
|
||||
echo 'You are not authorized to use the API.';
|
||||
exit('You are not authorized to use the API.');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue