diff options
author | Nils Adermann <naderman@naderman.de> | 2014-05-03 00:59:55 +0200 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2014-05-03 00:59:55 +0200 |
commit | 57927ef8eaf73a501570e9a6e25541402ae951af (patch) | |
tree | 4431df754b25a85a9450f524c944226d84c5acdc /phpBB | |
parent | 5800532264574167fef4772cd6e2cf28219ff9b8 (diff) | |
parent | 6d71f7d7ba282d128f69ef2441a9292e3d3f7e4b (diff) | |
download | forums-57927ef8eaf73a501570e9a6e25541402ae951af.tar forums-57927ef8eaf73a501570e9a6e25541402ae951af.tar.gz forums-57927ef8eaf73a501570e9a6e25541402ae951af.tar.bz2 forums-57927ef8eaf73a501570e9a6e25541402ae951af.tar.xz forums-57927ef8eaf73a501570e9a6e25541402ae951af.zip |
Merge remote-tracking branch 'github-vse/ticket/10521' into develop-ascraeus
* github-vse/ticket/10521:
[ticket/10521] Update docblock of set_cookie for new HttpOnly param
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/phpbb/session.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/session.php b/phpBB/phpbb/session.php index c9e04e1401..ea421ffcf3 100644 --- a/phpBB/phpbb/session.php +++ b/phpBB/phpbb/session.php @@ -1045,7 +1045,7 @@ class session * @param string $name Name of the cookie, will be automatically prefixed with the phpBB cookie name. track becomes [cookie_name]_track then. * @param string $cookiedata The data to hold within the cookie * @param int $cookietime The expiration time as UNIX timestamp. If 0 is provided, a session cookie is set. - * @param int $httponly Use HttpOnly. Defaults to true. Use false to make cookie accessible by client-side scripts. + * @param bool $httponly Use HttpOnly. Defaults to true. Use false to make cookie accessible by client-side scripts. */ function set_cookie($name, $cookiedata, $cookietime, $httponly = true) { |