diff --git a/main/install/index.php b/main/install/index.php
index 1fbaa09b11..6bff9cd7b9 100755
--- a/main/install/index.php
+++ b/main/install/index.php
@@ -90,7 +90,7 @@ require_once 'install_upgrade.lib.php'; //also defines constants
require_once 'install_functions.inc.php';
// Some constants
-define('DOKEOS_INSTALL', 1);
+define('SYSTEM_INSTALLATION', 1);
define('MAX_COURSE_TRANSFER', 100);
define('INSTALL_TYPE_UPDATE', 'update');
define('FORM_FIELD_DISPLAY_LENGTH', 40);
diff --git a/main/install/install_db.inc.php b/main/install/install_db.inc.php
index a8f63d2ab7..9078c6eb2a 100755
--- a/main/install/install_db.inc.php
+++ b/main/install/install_db.inc.php
@@ -19,7 +19,7 @@ require_once 'install_upgrade.lib.php';
// This page can only be access through including from the install script.
-if (!defined('DOKEOS_INSTALL')) {
+if (!defined('SYSTEM_INSTALLATION')) {
echo 'You are not allowed here!';
exit;
}
diff --git a/main/install/install_files.inc.php b/main/install/install_files.inc.php
index 6b6f8ad81c..09e6880941 100755
--- a/main/install/install_files.inc.php
+++ b/main/install/install_files.inc.php
@@ -15,7 +15,7 @@
==============================================================================
*/
-if (defined('DOKEOS_INSTALL')) {
+if (defined('SYSTEM_INSTALLATION')) {
// Write the system config file
write_dokeos_config_file('../inc/conf/configuration.php');
diff --git a/main/install/update-db-1.6.x-1.8.0.inc.php b/main/install/update-db-1.6.x-1.8.0.inc.php
index 8ed95834eb..89eebdc494 100755
--- a/main/install/update-db-1.6.x-1.8.0.inc.php
+++ b/main/install/update-db-1.6.x-1.8.0.inc.php
@@ -54,7 +54,7 @@ if (function_exists('ini_set')) {
*/
//check if we come from index.php or update_courses.php - otherwise display error msg
-if (defined('DOKEOS_INSTALL') || defined('DOKEOS_COURSE_UPDATE')) {
+if (defined('SYSTEM_INSTALLATION') || defined('DOKEOS_COURSE_UPDATE')) {
//check if the current Dokeos install is elligible for update
if (empty ($updateFromConfigFile) || !file_exists($_POST['updatePath'].$updateFromConfigFile) || !in_array(get_config_param('clarolineVersion'), $update_from_version_6)) {
@@ -98,8 +98,8 @@ if (defined('DOKEOS_INSTALL') || defined('DOKEOS_COURSE_UPDATE')) {
'.get_lang('DBHost').' : '.$dbHostForm.'
'.get_lang('DBLogin').' : '.$dbUsernameForm.'
'.get_lang('DBPassword').' : '.$dbPassForm.'
- '.get_lang('PleaseGoBackToStep').' '. (defined('DOKEOS_INSTALL') ? '3' : '1').'.
-