Fixed Notice when declaring constant (visibility depending on the PHP error level)

SVN:code[27]
This commit is contained in:
Romain Quetiez
2009-03-31 09:43:41 +00:00
parent 7fabc89f6e
commit a7a8b80fdb
2 changed files with 6 additions and 5 deletions

View File

@@ -6,10 +6,10 @@ require_once('../application/utils.inc.php');
require_once('../core/config.class.inc.php');
require_once('../core/cmdbsource.class.inc.php');
require_once('./setuppage.class.inc.php');
define(TMP_CONFIG_FILE, '../tmp-config-itop.php');
define(FINAL_CONFIG_FILE, '../config-itop.php');
define(PHP_MIN_VERSION, '5.2.0');
define(MYSQL_MIN_VERSION, '5.0.0');
define('TMP_CONFIG_FILE', '../tmp-config-itop.php');
define('FINAL_CONFIG_FILE', '../config-itop.php');
define('PHP_MIN_VERSION', '5.2.0');
define('MYSQL_MIN_VERSION', '5.0.0');
$sOperation = Utils::ReadParam('operation', 'step1');
$oP = new setup_web_page('iTop configuration wizard');

View File

@@ -1,6 +1,7 @@
<?php
require_once("../application/nicewebpage.class.inc.php");
define(INSTALL_LOG_FILE, '../setup.log');
define('INSTALL_LOG_FILE', '../setup.log');
/**
* Web page used for displaying the login form
*/