parent
7902cfa58a
commit
56eab50260
|
|
@ -137,6 +137,19 @@ return [
|
|||
|
||||
'domain' => null,
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| HTTP Access Only
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Setting this value to true will prevent JavaScript from accessing the
|
||||
| value of the cookie and the cookie will only be accessible through
|
||||
| the HTTP protocol. You are free to modify this option if needed.
|
||||
|
|
||||
*/
|
||||
|
||||
'http_only' => true,
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| HTTPS Only Cookies
|
||||
|
|
|
|||
|
|
@ -277,6 +277,7 @@ class Controller extends ControllerBase
|
|||
if ($ajaxResponse = $this->execAjaxHandlers()) {
|
||||
$result = $ajaxResponse;
|
||||
}
|
||||
|
||||
/*
|
||||
* Execute postback handler
|
||||
*/
|
||||
|
|
@ -287,6 +288,7 @@ class Controller extends ControllerBase
|
|||
) {
|
||||
$result = $handlerResponse;
|
||||
}
|
||||
|
||||
/*
|
||||
* Execute page action
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue