Project

General

Profile

« Previous | Next » 

Revision 1614

Added by Dietmar over 12 years ago

  1. fixed tabindex in installer (Tks to Easyuser)
  2. fixed installer call in /admin/index.php

View differences:

branches/2.8.x/CHANGELOG
11 11
! = Update/Change
12 12
===============================================================================
13 13

  
14
18 Feb-2012 Build 1614 Dietmar Woellbrink (Luisehahne)
15
# fixed tabindex in installer (Tks to Easyuser)
16
# fixed installer call in /admin/index.php
14 17
16 Feb-2012 Build 1613 Werner v.d.Decken(DarkViper)
15 18
# little fixes in classs database and add new readonly property DbName
16 19
11 Feb-2012 Build 1612 Werner v.d.Decken(DarkViper)
branches/2.8.x/wb/admin/index.php
24 24
*/
25 25

  
26 26
// Include config file
27
if(!defined('WB_URL')) {
27
if(!defined('WB_URL') && file_exists(realpath('../config.php'))) {
28 28
	require('../config.php');
29 29
}
30 30

  
branches/2.8.x/wb/admin/interface/version.php
51 51

  
52 52
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled)
53 53
if(!defined('VERSION')) define('VERSION', '2.8.3');
54
if(!defined('REVISION')) define('REVISION', '1613');
54
if(!defined('REVISION')) define('REVISION', '1614');
55 55
if(!defined('SP')) define('SP', '');
branches/2.8.x/wb/install/index.php
5 5
 * @package         install
6 6
 * @author          WebsiteBaker Project
7 7
 * @copyright       2009-2012, WebsiteBaker Org. e.V.
8
 * @link			http://www.websitebaker2.org/
8
 * @link			http://www.websitebaker.org/
9 9
 * @license         http://www.gnu.org/licenses/gpl.html
10 10
 * @platform        WebsiteBaker 2.8.x
11 11
 * @requirements    PHP 5.2.2 and higher
......
400 400
		<tr>
401 401
			<td class="name">Table Prefix&nbsp;([a-zA-Z0-9_])</td>
402 402
			<td class="value">
403
				<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_'; } ?>" />
403
				<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_'; } ?>" />
404 404
			</td>
405 405
		</tr>
406 406
		<tr>
407 407
    			<td class="name">Username:</td>
408 408
    			<td class="value">
409
    				<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'; } ?>" />
409
    				<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'; } ?>" />
410 410
    			</td>
411 411
		</tr>
412 412
		<tr>
413 413
    			<td class="name">Password:</td>
414 414
    			<td class="value">
415
    				<input type="password" tabindex="10" name="database_password" value="<?php if(isset($_SESSION['database_password'])) { echo $_SESSION['database_password']; } ?>" />
415
    				<input type="password" tabindex="11" name="database_password" value="<?php if(isset($_SESSION['database_password'])) { echo $_SESSION['database_password']; } ?>" />
416 416
    			</td>
417 417
		</tr>
418 418
		<tr>
......
497 497

  
498 498
	<div style="padding: 10px 0px 10px 0px; text-align:center;">
499 499
		<!-- 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. -->
500
		<a href="http://www.websitebaker2.org/" style="color: #000000;" target="_blank">WebsiteBaker</a>
500
		<a href="http://www.websitebaker.org/" style="color: #000000;" target="_blank">WebsiteBaker</a>
501 501
		is	released under the
502 502
		<a href="http://www.gnu.org/licenses/gpl.html" style="color: #000000;" target="_blank">GNU General Public License</a>
503 503
		<!-- 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. -->

Also available in: Unified diff