diff options
author | plegall <plg@piwigo.org> | 2013-04-18 13:00:55 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2013-04-18 13:00:55 +0000 |
commit | 97d610f7ed8db57379c00b6f54c2e2cdc1919d0a (patch) | |
tree | 8efe76644254de70400020da5ff4adb739576560 /include | |
parent | e4990fc6cad5ae407e7ed5b6373c159330ab3086 (diff) |
bug 2864 fixed: avoid warning on /dev/urandom with open_basedir restriction
git-svn-id: http://piwigo.org/svn/branches/2.5@22280 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include')
-rw-r--r-- | include/passwordhash.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/passwordhash.class.php b/include/passwordhash.class.php index 12958c7f1..84447b277 100644 --- a/include/passwordhash.class.php +++ b/include/passwordhash.class.php @@ -48,7 +48,7 @@ class PasswordHash { function get_random_bytes($count) { $output = ''; - if (is_readable('/dev/urandom') && + if (@is_readable('/dev/urandom') && ($fh = @fopen('/dev/urandom', 'rb'))) { $output = fread($fh, $count); fclose($fh); |