diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2009-12-11 03:25:32 +0100 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2009-12-11 03:25:32 +0100 |
commit | 00825deae7865c3e8bd3dd009f222e6b6aa80da2 (patch) | |
tree | 0fab3a0ce3c582c5475b52acd1595caedc51b322 /paste/include/storage/FileStorage.php | |
parent | d5e2a07fb514a2f16077b43e365766014fe87ea6 (diff) | |
download | rafb-nopaste-00825deae7865c3e8bd3dd009f222e6b6aa80da2.tar.gz rafb-nopaste-00825deae7865c3e8bd3dd009f222e6b6aa80da2.tar.xz rafb-nopaste-00825deae7865c3e8bd3dd009f222e6b6aa80da2.zip |
fixed wrong rand(i) invoke
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']) { |