From 784c13d9d062c5743e824c6a2475b35b5b6e48c4 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Thu, 22 Nov 2018 11:14:05 +0100 Subject: [PATCH] Fix label of month --- htdocs/compta/resultat/result.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/compta/resultat/result.php b/htdocs/compta/resultat/result.php index 3f53cfdc27c..9e3c28f529d 100644 --- a/htdocs/compta/resultat/result.php +++ b/htdocs/compta/resultat/result.php @@ -233,13 +233,13 @@ print ''.$langs->trans("SelectedPeriod").' foreach($months as $k => $v){ if (($k+1) >= $date_startmonth) { - print ''.$langs->trans($v).''; + print ''.$langs->trans('MonthShort'.sprintf("%02s",($k+1))).''; } } foreach($months as $k => $v){ if (($k+1) < $date_startmonth) { - print ''.$langs->trans($v).''; + print ''.$langs->trans('MonthShort'.sprintf("%02s",($k+1))).''; } } print '';