From 00825deae7865c3e8bd3dd009f222e6b6aa80da2 Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Fri, 11 Dec 2009 03:25:32 +0100 Subject: fixed wrong rand(i) invoke --- paste/include/storage/FileStorage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'paste/include/storage/FileStorage.php') 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']) { -- cgit v1.2.3