Index: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	(revision 646)
+++ trunk/CHANGELOG	(revision 647)
@@ -10,14 +10,16 @@
 # = Bugfix
 ! = Update/Change
 
-------------------------------------- 2.7.0 -------------------------------------
-30-Jan-2008 Thomas Hornik
-#	registered pages didn't appear in menu. fixed.
-!	Updated upgrade-script. (Some upgrades still missing)
-29-Jan-2008 Thomas Hornik
-#	strtotime()'s behavior differ in PHP4 and PHP5.
-	Had to fix some issues in admin/pages/sections and module news.
-#	Security bugfix: Text file for text-captcha was world-readable. Moved to database.
+------------------------------------- 2.7.0 -------------------------------------
+30-Jan-2008 Christian Sommer
+#	fixed bug with text Captcha (input was restricted to 10 chars.) and a small layout issue
+30-Jan-2008 Thomas Hornik
+#	registered pages didn't appear in menu. fixed.
+!	Updated upgrade-script. (Some upgrades still missing)
+29-Jan-2008 Thomas Hornik
+#	strtotime()'s behavior differ in PHP4 and PHP5.
+	Had to fix some issues in admin/pages/sections and module news.
+#	Security bugfix: Text file for text-captcha was world-readable. Moved to database.
 #	Text-captcha: empty line in text file, following a question, was accepted as answer. Fixed.
 28-Jan-2008 Matthias Gallas
 #	Replaced all special chars in language files with htmlentities or unicode
@@ -31,7 +33,7 @@
 !	added possibility to select the default backend language during installation process
 !	Re-introduced Changeset 593 (filename in pages/ from page_title instead of menu_title)
 #	Fixed some bugs in the Javascript Admin modul
-28-Jan-2008 Thomas Hornik
+28-Jan-2008 Thomas Hornik
 +	Allow a user-supplied From-Name in form-settings for email und success-email.
 !	changeset 627: menu_link and search/search.php needs some minor changes, too.
 +	Added Text-CAPTCHA on request. The captcha-text will be stored in temp/.captcha_text.txt
Index: trunk/wb/include/captcha/captcha.php
===================================================================
--- trunk/wb/include/captcha/captcha.php	(revision 646)
+++ trunk/wb/include/captcha/captcha.php	(revision 647)
@@ -89,7 +89,7 @@
 			case 'text': // text-captcha
 				?><table class="captcha_table"><tr>
 				<td class="text_captcha"><?php include(WB_PATH.'/include/captcha/captchas/text.php'); ?></td>
-				<td><input type="text" name="captcha" maxlength="10"  style="width:70px" /></td>
+				<td><input type="text" name="captcha" maxlength="50"  style="width:150px" /></td>
 				<td class="captcha_expl"><?php echo $MOD_CAPTCHA['VERIFICATION_INFO_QUEST']; ?></td>
 				</tr></table><?php
 				break;
Index: trunk/wb/admin/login/warning.html
===================================================================
--- trunk/wb/admin/login/warning.html	(revision 646)
+++ trunk/wb/admin/login/warning.html	(revision 647)
@@ -1,26 +1,26 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
-<head>
-<title>Maximum Invalid Login Attemps Exceeded</title>
-<style type="text/css"><!--
-body,td,th {
-	font-family: Verdana, Arial, Helvetica, sans-serif;
-	font-size: 12px;
-	color: #000000;
-}
-body {
-	margin: 0px;
-    background: #fff url(../interface/background.png) ;
-    background-repeat:repeat-x;
-}
-a:link, a:visited, a:active {
-	color: #003366;
-	text-decoration: none;
-}
-a:hover {
-	text-decoration: underline;
-	color: #336699;
-}
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+<head>
+<title>Maximum Invalid Login Attemps Exceeded</title>
+<style type="text/css"><!--
+body,td,th {
+	font-family: Verdana, Arial, Helvetica, sans-serif;
+	font-size: 12px;
+	color: #000000;
+}
+body {
+	margin: 0px;
+  background: #95C8F0 url(../interface/background.png) ;
+  background-repeat:repeat-x;
+}
+a:link, a:visited, a:active {
+	color: #003366;
+	text-decoration: none;
+}
+a:hover {
+	text-decoration: underline;
+	color: #336699;
+}
 h1 {
 	text-align: center;
 	font-size: 16px;
@@ -27,20 +27,20 @@
 	color: #fff;
 	text-transform: uppercase;
 }
-hr {
-	height: 1px;
-	color: #336699;
-	background-color: #336699;
-	border: 0;
-}
---></style></head>
-<body>
-
-<center>
-	<br />
-	<h1>Excessive Invalid Logins</h1>
-	You have attempted to login too many times
-</center>
-
-</body>
+hr {
+	height: 1px;
+	color: #336699;
+	background-color: #336699;
+	border: 0;
+}
+--></style></head>
+<body>
+
+<center>
+	<br />
+	<h1>Excessive Invalid Logins</h1>
+	You have attempted to login too many times
+</center>
+
+</body>
 </html>
\ No newline at end of file
