Index: services/ds.tx_caretakerinstance_CheckConfVarsTestService.xml =================================================================== --- services/ds.tx_caretakerinstance_CheckConfVarsTestService.xml (Revision 36915) +++ services/ds.tx_caretakerinstance_CheckConfVarsTestService.xml (Arbeitskopie) @@ -17,6 +17,25 @@ + + + + + select + + + Error + 0 + + + Warning + 1 + + + 0 + + + \ Kein Zeilenvorschub am Ende der Datei Index: services/class.tx_caretakerinstance_CheckConfVarsTestService.php =================================================================== --- services/class.tx_caretakerinstance_CheckConfVarsTestService.php (Revision 36915) +++ services/class.tx_caretakerinstance_CheckConfVarsTestService.php (Arbeitskopie) @@ -151,6 +151,9 @@ if ( count($failures) ) { $msg_failures .= chr(10) . 'Failures .' . chr(10) . implode( chr(10) , $failures ); + if ($this->getConfigValue('warningLevel') == 1) { + return tx_caretaker_TestResult::create(tx_caretaker_Constants::state_warning, 0, $msg_failures . chr(10) . $msg_success); + } return tx_caretaker_TestResult::create(tx_caretaker_Constants::state_error, 0, $msg_failures . chr(10) . $msg_success); }