PluginProbe
FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration / 2.1.0
FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration v2.1.0
2.1.0 2.0.15 2.0.12 2.0.10 2.0.4 2.0.1 2.0.0 1.95.3 1.95.2 1.95 1.91.6 trunk 1.11 1.12 1.13 1.20 1.21 1.22 1.23 1.30 1.31 1.32 1.35 1.40 1.41 All 42 releases
← All changes | app/Services/Libs/csv/src/AbstractCsv.php +1 -1 1.132.1.0 View file →
@@ -314,9 +314,9 @@
314 314 */
315 315 protected function filterInteger($int, $minValue, $errorMessage)
316 316 {
317 317 if (false === ($int = filter_var($int, FILTER_VALIDATE_INT, ['options' => ['min_range' => $minValue]]))) {
318 - throw new InvalidArgumentException($errorMessage);
318 + throw new InvalidArgumentException(esc_html($errorMessage));
319 319 }
320 320
321 321 return $int;
322 322 }