From: Roland Häder Date: Wed, 19 Jul 2017 21:16:54 +0000 (+0200) Subject: Opps, added missing curly brace. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=35ada999540aceafdc80aa6e5b3f610117c080b0;p=friendica.git Opps, added missing curly brace. Signed-off-by: Roland Häder --- diff --git a/include/text.php b/include/text.php index f3b94cd8cb..c9ab0b9430 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; } }