Skip to content

Commit c4d7c89

Browse files
authored
N°9144 Add data audit setup step
N°8864 Fix unneeded char
1 parent 5b58e40 commit c4d7c89

40 files changed

+5110
-4086
lines changed

css/setup.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/setup.scss

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -682,9 +682,6 @@ body {
682682
overflow: auto;
683683
text-align: center;
684684
}
685-
#installation_progress {
686-
display: none;
687-
}
688685
#fresh_content{
689686
border: 0;
690687
min-height: 300px;

setup/SetupDBBackup.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?php
2+
3+
class SetupDBBackup extends DBBackup
4+
{
5+
protected function LogInfo($sMsg)
6+
{
7+
SetupLog::Ok('Info - '.$sMsg);
8+
}
9+
10+
protected function LogError($sMsg)
11+
{
12+
SetupLog::Ok('Error - '.$sMsg);
13+
}
14+
}

setup/ajax.dataloader.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,7 @@ function FatalErrorCatcher($sOutput)
138138
ini_set('display_errors', true);
139139
ini_set('display_startup_errors', true);
140140

141-
require_once(APPROOT.'/setup/wizardcontroller.class.inc.php');
142-
require_once(APPROOT.'/setup/wizardsteps.class.inc.php');
141+
require_once(APPROOT.'/setup/wizardsteps_autoload.php');
143142

144143
$sClass = utils::ReadParam('step_class', '');
145144
$sState = utils::ReadParam('step_state', '');

0 commit comments

Comments
 (0)