Update of /cvsroot/php-blog/serendipity/plugins/serendipity_event_spamblock
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7154/plugins/serendipity_event_spamblock
Modified Files:
serendipity_event_spamblock.php
Log Message:
right variables
Index: serendipity_event_spamblock.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_event_spamblock/serendipity_event_spamblock.php,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -d -r1.36 -r1.37
--- serendipity_event_spamblock.php 1 Dec 2004 17:31:25 -0000 1.36
+++ serendipity_event_spamblock.php 2 Dec 2004 10:25:52 -0000 1.37
@@ -479,7 +479,7 @@
}
list($musec, $msec) = explode(' ', microtime());
- $srand = (float) $sec + ((float) $usec * 100000);
+ $srand = (float) $msec + ((float) $musec * 100000);
srand($srand);
mt_srand($srand);
$width = 120;
|