Index: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	(revision 674)
+++ trunk/CHANGELOG	(revision 675)
@@ -16,7 +16,8 @@
 08-Feb-2008 Christian Sommer
 -	Removed admin module mail_filter
 +	Added revised version of the output filter module
-08-Feb-2008 Thomas Hornik
+08-Feb-2008 Thomas Hornik
+!	Changed maxlength of captcha-fields - don't tell the bots how many chars we want to have.
 -	Removed unused function is_access_denied() from search
 04-Feb-2008 Thomas Hornik
 !	email-addresses are excluded from search-results page.
Index: trunk/wb/include/captcha/captcha.php
===================================================================
--- trunk/wb/include/captcha/captcha.php	(revision 674)
+++ trunk/wb/include/captcha/captcha.php	(revision 675)
@@ -97,7 +97,7 @@
 			case 'calc_text': // calculation as text
 				?><table class="captcha_table"><tr>
 				<td class="text_captcha"><?php include(WB_PATH.'/include/captcha/captchas/calc_text.php'); ?>&nbsp;=&nbsp;</td>
-				<td><input type="text" name="captcha" maxlength="5"  style="width:20px" /></td>
+				<td><input type="text" name="captcha" maxlength="10"  style="width:20px" /></td>
 				<td class="captcha_expl"><?php echo $MOD_CAPTCHA['VERIFICATION_INFO_RES']; ?></td>
 				</tr></table><?php
 				break;
@@ -104,7 +104,7 @@
 			case 'calc_image': // calculation with image (old captcha)
 				?><table class="captcha_table"><tr>
 				<td class="image_captcha"><img src="<?php echo WB_URL."/include/captcha/captchas/calc_image.php?t=$t"; ?>" alt="Captcha" /></td><td>&nbsp;=&nbsp;</td>
-				<td><input type="text" name="captcha" maxlength="5" style="width:20px" /></td>
+				<td><input type="text" name="captcha" maxlength="10" style="width:20px" /></td>
 				<td class="captcha_expl"><?php echo $MOD_CAPTCHA['VERIFICATION_INFO_RES']; ?></td>
 				</tr></table><?php
 				break;
@@ -114,7 +114,7 @@
 			case 'old_image': // old captcha
 				?><table class="captcha_table"><tr>
 				<td class="image_captcha"><img src="<?php echo WB_URL.'/include/captcha/captchas/'.CAPTCHA_TYPE.".php?t=$t"; ?>" alt="Captcha" /></td>
-				<td><input type="text" name="captcha" maxlength="5" style="width:50px" /></td>
+				<td><input type="text" name="captcha" maxlength="10" style="width:50px" /></td>
 				<td class="captcha_expl"><?php echo $MOD_CAPTCHA['VERIFICATION_INFO_TEXT']; ?></td>
 				</tr></table><?php
 				break;
