Skip to content
Snippets Groups Projects
Commit 1fe02bd7 authored by Nicolas Couture's avatar Nicolas Couture
Browse files

FIX #26668 TIME 00:00 Keep custom field value if set in resource injection...

FIX #26668 TIME 00:00 Keep custom field value if set in resource injection rather than default value
parent db6a1488
No related branches found
No related tags found
No related merge requests found
......@@ -179,7 +179,6 @@ class StoreController
if (strpos($field['identifier'], 'indexingCustomField_') !== false) {
$idCustom = explode("_", $field['identifier']);
$idCustom = $idCustom[1];
$args['customFields'][$idCustom] = $defaultValue;
$args['customFields'][$idCustom] = (!empty($args['customFields'][$idCustom])) ? $args['customFields'][$idCustom] : $defaultValue;
} elseif ($field['identifier'] != 'initiator') {
$args[$field['identifier']] = $defaultValue;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment