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>
This commit is contained in:
canyonknight 2012-06-28 21:01:27 -04:00 committed by Lukas Fleischer
parent d8d36d6f4b
commit 5ebf9d64ee

View file

@ -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() {