Skip to content
Snippets Groups Projects
Commit bd28dd36 authored by Patrick Barroca's avatar Patrick Barroca :grin:
Browse files

dev #51538 : fix failures

parent a51af83c
Branches
Tags
3 merge requests!2334Master,!2325Dev#51538 1655 pouvoir parametrer les jours de lancement des batchs,!2303Dev#51538 1655 pouvoir parametrer les jours de lancement des batchs
Pipeline #2305 passed with stage
in 15 minutes and 4 seconds
......@@ -64,7 +64,10 @@ class Class_BatchLoader extends Storm_Model_Loader {
public function getKnownType($type) {
return Class_Batch::getKnownTypes()[$type];
$known_types = Class_Batch::getKnownTypes();
return array_key_exists($type, $known_types)
? $known_types[$type]
: null;
}
......@@ -90,7 +93,9 @@ class Class_BatchLoader extends Storm_Model_Loader {
public function getBatchLibelle($type) {
return Class_Batch::getKnownType($type)->getLabel();
return ($model = Class_Batch::getKnownType($type))
? $model->getLabel()
: '';
}
......
......@@ -42,7 +42,7 @@ class ZendAfi_Form_Admin_Batch extends ZendAfi_Form {
public function populate($datas) {
$current_batch_label = isset($datas['type'])
$current_batch_label = isset($datas['type']) && $datas['type']
? Class_Batch::getBatchLibelle($datas['type'])
: '';
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment