N°9144 Add data audit setup step

N°8864 Fix unneeded char
This commit is contained in:
Timmy38
2026-02-19 14:27:24 +01:00
committed by GitHub
parent 5b58e40fc9
commit c4d7c89553
40 changed files with 5110 additions and 4086 deletions

14
setup/SetupDBBackup.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
class SetupDBBackup extends DBBackup
{
protected function LogInfo($sMsg)
{
SetupLog::Ok('Info - '.$sMsg);
}
protected function LogError($sMsg)
{
SetupLog::Ok('Error - '.$sMsg);
}
}