Skip to content

Commit

Permalink
filter: fixed 38103: Deleting a Comment throws error
Browse files Browse the repository at this point in the history
  • Loading branch information
alex40724 committed Oct 3, 2023
1 parent 9d3a708 commit 5663a07
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Services/UI/classes/class.ilUIFilterService.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,10 @@ public function standard(
// values
$val = $this->session->getValue($filter_id, $input_id);
if (!is_null($val)) {
$i = $i->withValue($val);
try {
$i = $i->withValue($val);
} catch (InvalidArgumentException $e) {
}
}
$inputs_with_session_data[$input_id] = $i;
}
Expand Down

0 comments on commit 5663a07

Please sign in to comment.