From 63c4109a7c45a5776a17cff8417d7775727231b1 Mon Sep 17 00:00:00 2001 From: asansal Date: Wed, 16 Apr 2025 06:11:29 +0700 Subject: [PATCH] Update month names to English in getFullNameOfMonth function --- controller/libconfig.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/controller/libconfig.php b/controller/libconfig.php index 26a03e3..9cf82e6 100644 --- a/controller/libconfig.php +++ b/controller/libconfig.php @@ -340,10 +340,10 @@ public function getFullNameOfMonth($monthnumber) { $monthnumber=(int)$monthnumber; - $month[1]="Januari";$month[2]="Februari";$month[3]="Maret"; - $month[4]="April";$month[5]="Mei";$month[6]="Juni";$month[7]="Juli"; - $month[8]="Agustus";$month[9]="September";$month[10]="Oktober";$month[11]="November"; - $month[12]="Desember"; + $month[1]="January";$month[2]="February";$month[3]="March"; + $month[4]="April";$month[5]="May";$month[6]="June";$month[7]="July"; + $month[8]="August";$month[9]="September";$month[10]="October";$month[11]="November"; + $month[12]="December"; return $month[$monthnumber]; }