Merge branch 'master' of https://github.com/alextselegidis/easyappointments
This commit is contained in:
commit
67d8c4cddd
3 changed files with 8 additions and 6 deletions
|
@ -284,7 +284,7 @@ class CI_Input {
|
|||
$expire = ($expire > 0) ? time() + $expire : 0;
|
||||
}
|
||||
|
||||
setcookie($prefix.$name, $value, $expire, $path, $domain, $secure);
|
||||
setcookie($prefix.$name, $value, $expire, $path, $domain, $secure, true);
|
||||
}
|
||||
|
||||
// --------------------------------------------------------------------
|
||||
|
@ -863,4 +863,4 @@ class CI_Input {
|
|||
}
|
||||
|
||||
/* End of file Input.php */
|
||||
/* Location: ./system/core/Input.php */
|
||||
/* Location: ./system/core/Input.php */
|
||||
|
|
|
@ -190,7 +190,7 @@ class CI_Security {
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
setcookie($this->_csrf_cookie_name, $this->_csrf_hash, $expire, config_item('cookie_path'), config_item('cookie_domain'), $secure_cookie);
|
||||
setcookie($this->_csrf_cookie_name, $this->_csrf_hash, $expire, config_item('cookie_path'), config_item('cookie_domain'), $secure_cookie, true);
|
||||
|
||||
log_message('debug', "CRSF cookie Set");
|
||||
|
||||
|
@ -872,4 +872,4 @@ class CI_Security {
|
|||
}
|
||||
|
||||
/* End of file Security.php */
|
||||
/* Location: ./system/core/Security.php */
|
||||
/* Location: ./system/core/Security.php */
|
||||
|
|
|
@ -429,7 +429,8 @@ class CI_Session {
|
|||
($this->now - 31500000),
|
||||
$this->cookie_path,
|
||||
$this->cookie_domain,
|
||||
0
|
||||
0,
|
||||
true
|
||||
);
|
||||
|
||||
// Kill session data
|
||||
|
@ -685,7 +686,8 @@ class CI_Session {
|
|||
$expire,
|
||||
$this->cookie_path,
|
||||
$this->cookie_domain,
|
||||
$this->cookie_secure
|
||||
$this->cookie_secure,
|
||||
true
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue