Index: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	(revision 530)
+++ trunk/CHANGELOG	(revision 531)
@@ -11,6 +11,9 @@
 ! = Update/Change
 
 ------------------------------------- 2.7.0 -------------------------------------
+13-Jan-2008 Christian Sommer
+#	fixed error with redirection to admin panel after installation
+
 12-Jan-2008 Christian Sommer
 !	introduced smart URL detection for the 'View' menu in the WB backend
 	(if page_id is set, redirect to this page instead of the root)
Index: trunk/wb/admin/interface/version.php
===================================================================
--- trunk/wb/admin/interface/version.php	(revision 530)
+++ trunk/wb/admin/interface/version.php	(revision 531)
@@ -36,6 +36,7 @@
 	exit(0);
 }
 
-define('VERSION', '2.6.7');
+// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled)
+if(!defined('VERSION')) define('VERSION', '2.7');
 
 ?>
\ No newline at end of file
