this is what i found in cookie.php from 333 line to 338.
} if (PHP_VERSION_ID <= 50200) { /* PHP version > 5.2.0 */ return setcookie($this->_name, $content, $time, $this->_path, $this->_domain, $this->_secure); } else { return setcookie($this->_name, $content, $time, $this->_path, $this->_domain, $this->_secure, true); }
where Line 337
return setcookie($this->_name, $content, $time, $this->_path, $this->_domain, $this->_secure, true);
any help will be appreciate it a lot! thank you!