Move System::httpExit to BaseModule->httpExit
- This will ensure headers set in BaseModule->run will be carried in httpExit scenarios - Deprecate httpExit() method in Core\System
This commit is contained in:
@@ -80,7 +80,7 @@ class Browser extends BaseModule
|
||||
]);
|
||||
|
||||
if (empty($request['mode'])) {
|
||||
System::httpExit($output);
|
||||
$this->httpExit($output);
|
||||
}
|
||||
|
||||
return $output;
|
||||
|
||||
@@ -91,7 +91,7 @@ class Browser extends BaseModule
|
||||
]);
|
||||
|
||||
if (empty($request['mode'])) {
|
||||
System::httpExit($output);
|
||||
$this->httpExit($output);
|
||||
}
|
||||
|
||||
return $output;
|
||||
|
||||
Reference in New Issue
Block a user