Skip to content

Commit

Permalink
TASK: Add missing type declaration from Flow 8.3
Browse files Browse the repository at this point in the history
While branching 8.4, this type declaration got lost and should be added again.
  • Loading branch information
robertlemke committed Jun 19, 2024
1 parent 3c70f86 commit 8ef4cd3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ protected function renderOptionTag(mixed $value, string $label)
$output .= ' selected="selected"';
}

$output .= '>' . htmlspecialchars($label) . '</option>';
$output .= '>' . htmlspecialchars((string)$label) . '</option>';

return $output;
}
Expand Down

0 comments on commit 8ef4cd3

Please sign in to comment.