diff options
author | Lukas Reschke <lukas@owncloud.com> | 2014-09-03 14:16:55 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2014-09-03 14:16:55 +0200 |
commit | dcea6de26ad9d640a91064f35719d4a5a80cc64d (patch) | |
tree | 8fd33774d6b2ea140834f131fb5666afb89b0075 /lib/public | |
parent | a54af89d8a579ead1b26f617fa0d177925aee6e8 (diff) | |
download | nextcloud-server-dcea6de26ad9d640a91064f35719d4a5a80cc64d.tar.gz nextcloud-server-dcea6de26ad9d640a91064f35719d4a5a80cc64d.zip |
Fix quoting
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/security/isecurerandom.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/security/isecurerandom.php b/lib/public/security/isecurerandom.php index 46d82dd5f15..3de60f8d717 100644 --- a/lib/public/security/isecurerandom.php +++ b/lib/public/security/isecurerandom.php @@ -26,7 +26,7 @@ interface ISecureRandom { const CHAR_UPPER = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'; const CHAR_LOWER = 'abcdefghijklmnopqrstuvwxyz'; const CHAR_DIGITS = '0123456789'; - const CHAR_SYMBOLS = '!\"#$%&\\'()* +,-./:;<=>?@[\]^_`{|}~'; + const CHAR_SYMBOLS = '!\"#$%&\\\'()* +,-./:;<=>?@[\]^_`{|}~'; /** * Convenience method to get a low strength random number generator. |