From 35ada999540aceafdc80aa6e5b3f610117c080b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20H=C3=A4der?= Date: Wed, 19 Jul 2017 23:16:54 +0200 Subject: [PATCH] Opps, added missing curly brace. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- include/text.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/text.php b/include/text.php index f3b94cd8c..c9ab0b943 100644 --- a/include/text.php +++ b/include/text.php @@ -1985,7 +1985,7 @@ function is_a_date_arg($s) { $y = date('Y'); if ($i <= $y + 1 && strpos($s, '-') == 4) { $m = intval(substr($s, 5)); - if ($m > 0 && $m <= 12) + if ($m > 0 && $m <= 12) { return true; } }