--- usercp_confirm.php.orig	2007-03-26 11:50:21.000000000 +0200
+++ usercp_confirm.php	2007-03-26 11:50:41.000000000 +0200
@@ -162,13 +162,21 @@
 	{
 		$pixel = ord($scanline{$i});
 
+        /**
+         * Patch by reg
+         * Change randomise function
+         * to avoid a lot of web spams
+         */
+
 		if ($pixel < 190)
 		{
-			$new_line .= chr(mt_rand(0, 205));
+			//$new_line .= chr(mt_rand(0, 205));
+            $new_line .= chr(mt_rand(105, 255));
 		}
 		else if ($pixel > 190)
 		{
-			$new_line .= chr(mt_rand(145, 255));
+			//$new_line .= chr(mt_rand(145, 255));
+            $new_line .= chr(mt_rand(0, 200));
 		}
 		else
 		{
