Skip to content

Commit

Permalink
Made code analysis happy
Browse files Browse the repository at this point in the history
  • Loading branch information
rimi-itk committed Jan 23, 2024
1 parent 616f2ab commit 21efb7c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ public function acceptExposedInput($input) {
}

// If it's non-required and there's no value don't bother filtering.
if (!$this->options['expose']['required'] && empty($this->validated_exposed_input)) {
if (!$this->options['expose']['required'] && !isset($this->validated_exposed_input)) {

Check failure on line 318 in web/modules/custom/hoeringsportal_forms/src/Plugin/views/filter/NodeIndexNid.php

View workflow job for this annotation

GitHub Actions / PHP - Code analysis

Access to an undefined property Drupal\hoeringsportal_forms\Plugin\views\filter\NodeIndexNid::$validated_exposed_input.
return FALSE;
}

Expand Down

0 comments on commit 21efb7c

Please sign in to comment.