diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-02-13 11:35:12 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-02-13 12:08:23 +0100 |
commit | 025110821f41ba55ec9deb2479ff7eb6b3e8b5c1 (patch) | |
tree | 7be906cf4d0a4b3fc88f03c37b9b97cd15ebc84e /lib/public/security | |
parent | dfcd4acd5aebfa3476c58c652bbf5545d3882217 (diff) | |
download | nextcloud-server-025110821f41ba55ec9deb2479ff7eb6b3e8b5c1.tar.gz nextcloud-server-025110821f41ba55ec9deb2479ff7eb6b3e8b5c1.zip |
URLEncode logout attribute
Otherwise logout can fail if the requesttoken contains a +
Diffstat (limited to 'lib/public/security')
-rw-r--r-- | lib/public/security/isecurerandom.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/public/security/isecurerandom.php b/lib/public/security/isecurerandom.php index 3de60f8d717..b4c488b7f37 100644 --- a/lib/public/security/isecurerandom.php +++ b/lib/public/security/isecurerandom.php @@ -53,9 +53,10 @@ interface ISecureRandom { /** * Generate a random string of specified length. * @param string $length The length of the generated string - * @param string $characters An optional list of characters to use + * @param string $characters An optional list of characters to use if no characterlist is + * specified all valid base64 characters are used. * @return string - * @throws \Exception + * @throws \Exception If the generator is not initialized. */ public function generate($length, $characters = ''); } |