From f4bb3894da175aba8399944e2925ed865f1fa81f Mon Sep 17 00:00:00 2001 From: Matthieu Leproux Date: Wed, 28 Sep 2022 12:52:29 +0200 Subject: [PATCH] fixed #1711 removing start date gives coherent results now --- include/ws_functions/pwg.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ws_functions/pwg.php b/include/ws_functions/pwg.php index b714f1fb5..96cea0136 100644 --- a/include/ws_functions/pwg.php +++ b/include/ws_functions/pwg.php @@ -894,7 +894,7 @@ SELECT $i++; - if ($i < $first_line or $i > $last_line) + if ($i <= $first_line and $i >= $last_line) { continue; }