Index: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	(revision 923)
+++ trunk/CHANGELOG	(revision 924)
@@ -11,6 +11,8 @@
 ! = Update/Change
 
 ------------------------------------- 2.8.0 -------------------------------------
+08-Feb-2009 Christian Sommer
+#	fixed warning if database connection failed during installation process
 06-Feb-2009 Christian Sommer
 !	fixed some typos in German language file (thanks to freeSbee)
 !	added new captcha fonts and replaced old background images with the ones created by thorn
Index: trunk/wb/install/save.php
===================================================================
--- trunk/wb/install/save.php	(revision 923)
+++ trunk/wb/install/save.php	(revision 924)
@@ -345,7 +345,7 @@
 }
 
 // Try connecting to database	
-if(!mysql_connect(DB_HOST, DB_USERNAME, DB_PASSWORD)) {
+if(!@mysql_connect(DB_HOST, DB_USERNAME, DB_PASSWORD)) {
 	set_error('Database host name, username and/or password incorrect. MySQL Error:<br />'.mysql_error());
 }
 
