From c30b50a588dc4c2de41872001239c76d3332b693 Mon Sep 17 00:00:00 2001 From: asansal Date: Mon, 7 Apr 2025 09:57:11 +0700 Subject: [PATCH] Update month names to English in FN_GETMONTHNAME function --- controller/libhtml.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/controller/libhtml.php b/controller/libhtml.php index 67c105c..d740c81 100644 --- a/controller/libhtml.php +++ b/controller/libhtml.php @@ -172,8 +172,8 @@ public function FN_GETMONTHNAME($i) { - $arrmonth=array("1"=>"Januari","2"=>"Februari","3"=>"Maret","4"=>"April","5"=>"Mei","6"=>"Juni","7"=>"Juli", - "8"=>"Agustus","9"=>"September","10"=>"Oktober","11"=>"November","12"=>"Desember"); + $arrmonth=array("1"=>"January","2"=>"February","3"=>"March","4"=>"April","5"=>"May","6"=>"June","7"=>"July", + "8"=>"August","9"=>"September","10"=>"October","11"=>"November","12"=>"December"); return $arrmonth[$i]; }