From 5f64fe251681b15ee9ef34ed92475b041b5efcd0 Mon Sep 17 00:00:00 2001 From: logmanoriginal Date: Fri, 1 Nov 2019 15:29:16 +0100 Subject: [PATCH] [BridgeAbstract] Fix broken assignment of defaultValue setInputs() currently looks if the global array defines a 'value' for a given parameter, but that isn't supported by the API. It needs to be 'defaultValue'. --- lib/BridgeAbstract.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/BridgeAbstract.php b/lib/BridgeAbstract.php index b4eb9ff5..c8ad79c5 100644 --- a/lib/BridgeAbstract.php +++ b/lib/BridgeAbstract.php @@ -165,8 +165,8 @@ abstract class BridgeAbstract implements BridgeInterface { foreach(static::PARAMETERS['global'] as $name => $properties) { if(isset($inputs[$name])) { $value = $inputs[$name]; - } elseif(isset($properties['value'])) { - $value = $properties['value']; + } elseif(isset($properties['defaultValue'])) { + $value = $properties['defaultValue']; } else { continue; }