diff options
author | canyonknight <canyonknight@gmail.com> | 2012-06-29 03:01:27 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-07-06 11:27:12 +0200 |
commit | 5ebf9d64ee03e0b19f42b0475ad7750eef911392 (patch) | |
tree | 05076c3c5ad820aa50bfa2ed1f15dbe836bc13f4 | |
parent | d8d36d6f4beaa01263f781997ef475158c87f349 (diff) | |
download | aur-5ebf9d64ee03e0b19f42b0475ad7750eef911392.tar.gz aur-5ebf9d64ee03e0b19f42b0475ad7750eef911392.tar.xz |
aur.inc.php: Remove old and unused make_seed function
Signed-off-by: canyonknight <canyonknight@gmail.com>
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
-rw-r--r-- | web/lib/aur.inc.php | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/web/lib/aur.inc.php b/web/lib/aur.inc.php index 4e6baa2d..f82a96a7 100644 --- a/web/lib/aur.inc.php +++ b/web/lib/aur.inc.php @@ -94,13 +94,6 @@ function valid_email($addy) { return true; } -# a new seed value for mt_srand() -# -function make_seed() { - list($usec, $sec) = explode(' ', microtime()); - return (float) $sec + ((float) $usec * 10000); -} - # generate a (hopefully) unique session id # function new_sid() { |