diff options
author | Maxime <contact@epoc.fr> | 2014-03-08 19:00:12 +0100 |
---|---|---|
committer | Maxime <contact@epoc.fr> | 2014-03-08 19:00:12 +0100 |
commit | ddd856121dedf105fd7b14edb0b1f3485b25d85a (patch) | |
tree | edf8de9ca93c1a39f62fd792d82256d8eb152bad | |
parent | 66fbcc4ea21318ceca9024f31e0d350337dbb75d (diff) |
urandom is not available on Windows
-rw-r--r-- | models/base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/base.php b/models/base.php index 95c5b07f..97022576 100644 --- a/models/base.php +++ b/models/base.php @@ -51,7 +51,7 @@ abstract class Base // Generate a random token from /dev/urandom or with uniqid() public static function generateToken() { - if (ini_get('open_basedir') === '') { + if (ini_get('open_basedir') === '' and strtoupper(substr(PHP_OS, 0, 3)) !== 'WIN') { $token = file_get_contents('/dev/urandom', false, null, 0, 30); } else { |