diff options
Diffstat (limited to 'paste/include/storage/FileStorage.php')
-rw-r--r-- | paste/include/storage/FileStorage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paste/include/storage/FileStorage.php b/paste/include/storage/FileStorage.php index a6ea0f2..09b222f 100644 --- a/paste/include/storage/FileStorage.php +++ b/paste/include/storage/FileStorage.php @@ -47,7 +47,7 @@ class FileStorage extends StorageEngine global $config; do { - $filename = sha1(date('r') . rand(1000)); + $filename = sha1(date('r') . rand(1000, getrandmax())); } while (file_exists(realpath($storage_path . '/' , $filename))); if ($config['short_results_path']) { |