Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1613)
+++ branches/2.8.x/CHANGELOG	(revision 1614)
@@ -11,6 +11,9 @@
 ! = Update/Change
 ===============================================================================
 
+18 Feb-2012 Build 1614 Dietmar Woellbrink (Luisehahne)
+# fixed tabindex in installer (Tks to Easyuser)
+# fixed installer call in /admin/index.php
 16 Feb-2012 Build 1613 Werner v.d.Decken(DarkViper)
 # little fixes in classs database and add new readonly property DbName
 11 Feb-2012 Build 1612 Werner v.d.Decken(DarkViper)
Index: branches/2.8.x/wb/admin/index.php
===================================================================
--- branches/2.8.x/wb/admin/index.php	(revision 1613)
+++ branches/2.8.x/wb/admin/index.php	(revision 1614)
@@ -24,7 +24,7 @@
 */
 
 // Include config file
-if(!defined('WB_URL')) {
+if(!defined('WB_URL') && file_exists(realpath('../config.php'))) {
 	require('../config.php');
 }
 
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1613)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1614)
@@ -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', '1613');
+if(!defined('REVISION')) define('REVISION', '1614');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/install/index.php
===================================================================
--- branches/2.8.x/wb/install/index.php	(revision 1613)
+++ branches/2.8.x/wb/install/index.php	(revision 1614)
@@ -5,7 +5,7 @@
  * @package         install
  * @author          WebsiteBaker Project
  * @copyright       2009-2012, WebsiteBaker Org. e.V.
- * @link			http://www.websitebaker2.org/
+ * @link			http://www.websitebaker.org/
  * @license         http://www.gnu.org/licenses/gpl.html
  * @platform        WebsiteBaker 2.8.x
  * @requirements    PHP 5.2.2 and higher
@@ -400,19 +400,19 @@
 		<tr>
 			<td class="name">Table Prefix&nbsp;([a-zA-Z0-9_])</td>
 			<td class="value">
-				<input <?php echo field_error('table_prefix')?> type="text" tabindex="11" name="table_prefix" value="<?php if(isset($_SESSION['table_prefix'])) { echo $_SESSION['table_prefix']; } else { echo 'wb_'; } ?>" />
+				<input <?php echo field_error('table_prefix')?> type="text" tabindex="9" name="table_prefix" value="<?php if(isset($_SESSION['table_prefix'])) { echo $_SESSION['table_prefix']; } else { echo 'wb_'; } ?>" />
 			</td>
 		</tr>
 		<tr>
     			<td class="name">Username:</td>
     			<td class="value">
-    				<input <?php echo field_error('database_username');?> type="text" tabindex="9" name="database_username" value="<?php if(isset($_SESSION['database_username'])) { echo $_SESSION['database_username']; } else { echo 'root'; } ?>" />
+    				<input <?php echo field_error('database_username');?> type="text" tabindex="10" name="database_username" value="<?php if(isset($_SESSION['database_username'])) { echo $_SESSION['database_username']; } else { echo 'root'; } ?>" />
     			</td>
 		</tr>
 		<tr>
     			<td class="name">Password:</td>
     			<td class="value">
-    				<input type="password" tabindex="10" name="database_password" value="<?php if(isset($_SESSION['database_password'])) { echo $_SESSION['database_password']; } ?>" />
+    				<input type="password" tabindex="11" name="database_password" value="<?php if(isset($_SESSION['database_password'])) { echo $_SESSION['database_password']; } ?>" />
     			</td>
 		</tr>
 		<tr>
@@ -497,7 +497,7 @@
 
 	<div style="padding: 10px 0px 10px 0px; text-align:center;">
 		<!-- Please note: the below reference to the GNU GPL should not be removed, as it provides a link for users to read about warranty, etc. -->
-		<a href="http://www.websitebaker2.org/" style="color: #000000;" target="_blank">WebsiteBaker</a>
+		<a href="http://www.websitebaker.org/" style="color: #000000;" target="_blank">WebsiteBaker</a>
 		is	released under the
 		<a href="http://www.gnu.org/licenses/gpl.html" style="color: #000000;" target="_blank">GNU General Public License</a>
 		<!-- Please note: the above reference to the GNU GPL should not be removed, as it provides a link for users to read about warranty, etc. -->
