From c51beb5f57640ddd576826e02e7822c3c475df1b Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Fri, 27 Jul 2018 11:34:25 +0300 Subject: [PATCH] Fix month translation --- app/Libraries/Utils.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Libraries/Utils.php b/app/Libraries/Utils.php index 41e013b25b67..46511e42a86f 100644 --- a/app/Libraries/Utils.php +++ b/app/Libraries/Utils.php @@ -904,7 +904,7 @@ class Utils $month += 12; } - return trans('texts.' . $months[$month], [], null, $locale); + return trans('texts.' . $months[$month], [], $locale); } private static function getQuarter($offset)