Update of /cvsroot/php-blog/serendipity/plugins/serendipity_event_spamblock
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7033/plugins/serendipity_event_spamblock
Modified Files:
Tag: branch-0-7
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.25.2.4
retrieving revision 1.25.2.5
diff -u -d -r1.25.2.4 -r1.25.2.5
--- serendipity_event_spamblock.php 1 Dec 2004 17:31:42 -0000 1.25.2.4
+++ serendipity_event_spamblock.php 2 Dec 2004 10:25:15 -0000 1.25.2.5
@@ -396,7 +396,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;
|