Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1694)
+++ branches/2.8.x/CHANGELOG	(revision 1695)
@@ -12,6 +12,8 @@
 ===============================================================================
 
 
+18 Aug-2012 Build 1695 Dietmar Woellbrink (Luisehahne)
+# fixed $install_tables in install/save.php 
 18 Aug-2012 Build 1694 Dietmar Woellbrink (Luisehahne)
 + add var $iPhpDeclaredClasses = sizeof(get_declared_classes() set by PHP in initialize.php
 18 Aug-2012 Build 1693 Dietmar Woellbrink (Luisehahne)
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1694)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1695)
@@ -51,5 +51,5 @@
 
 // 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.8.3');
-if(!defined('REVISION')) define('REVISION', '1694');
+if(!defined('REVISION')) define('REVISION', '1695');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/install/save.php
===================================================================
--- branches/2.8.x/wb/install/save.php	(revision 1694)
+++ branches/2.8.x/wb/install/save.php	(revision 1695)
@@ -3,9 +3,8 @@
  *
  * @category        backend
  * @package         install
- * @author          WebsiteBaker Project
- * @copyright       2004-2009, Ryan Djurovich
- * @copyright       2009-2011, Website Baker Org. e.V.
+ * @author          Ryan Djurovich, WebsiteBaker Project
+ * @copyright       2009-2012, WebsiteBaker Org. e.V.
  * @link			http://www.websitebaker2.org/
  * @license         http://www.gnu.org/licenses/gpl.html
  * @platform        WebsiteBaker 2.8.x
@@ -235,7 +234,7 @@
 }
 
 // Find out if the user wants to install tables and data
-$install_tables ((isset($_POST['install_tables']) AND $_POST['install_tables'] == 'true'));
+$install_tables = ((isset($_POST['install_tables']) AND $_POST['install_tables'] == 'true'));
 // End database details code
 
 // Begin website title code
