diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-10-08 13:01:41 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-10-08 13:01:41 +0200 |
commit | 8d2c8cf2a262d6299932125872fb0d536881a058 (patch) | |
tree | 392d3c02a8ecb5061c1bfcd9b71d03c9c0ecb8ce /lib/public | |
parent | 95c8d7598b64208dbb0110d6e581b8a311359bf8 (diff) | |
parent | 6a4f22c61f58b80f826408780d6882f0d1041e70 (diff) | |
download | nextcloud-server-8d2c8cf2a262d6299932125872fb0d536881a058.tar.gz nextcloud-server-8d2c8cf2a262d6299932125872fb0d536881a058.zip |
Merge pull request #19607 from owncloud/use-url
Use `/` if installed in main folder
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/appframework/http/ioutput.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/appframework/http/ioutput.php b/lib/public/appframework/http/ioutput.php index ba4c031001b..185bc589f22 100644 --- a/lib/public/appframework/http/ioutput.php +++ b/lib/public/appframework/http/ioutput.php @@ -68,9 +68,9 @@ interface IOutput { * @param string $path * @param string $domain * @param bool $secure - * @param bool $httponly + * @param bool $httpOnly * @since 8.1.0 */ - public function setCookie($name, $value, $expire, $path, $domain, $secure, $httponly); + public function setCookie($name, $value, $expire, $path, $domain, $secure, $httpOnly); } |