Skip to content

Commit

Permalink
Update Sermepa.php
Browse files Browse the repository at this point in the history
  • Loading branch information
facine authored Nov 5, 2020
1 parent 57c2365 commit 82a9df1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Sermepa.php
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ private function getParameters() {
);

return array_filter($parameters, function($parameter) {
return ($parameter !== NULL && $parameter !== FALSE && $parameter !== '' && !empty($parameter) );
return (($parameter !== NULL && $parameter !== FALSE && $parameter !== '') || (is_array($parameter) && !empty($parameter)));
});
}

Expand Down

0 comments on commit 82a9df1

Please sign in to comment.