소스 검색

Fix calendar time format (am/pm)

TehMuffinMoo 4 년 전
부모
커밋
db6ae2f688
1개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. 5 5
      api/functions/option-functions.php

+ 5 - 5
api/functions/option-functions.php

@@ -901,12 +901,12 @@ trait OptionsFunction
 	{
 		return array(
 			array(
-				'name' => '6p',
-				'value' => 'h(:mm)t'
+				'name' => '6pm',
+				'value' => 'h(:mm)a'
 			),
 			array(
-				'name' => '6:00p',
-				'value' => 'h:mmt'
+				'name' => '6:00pm',
+				'value' => 'h:mma'
 			),
 			array(
 				'name' => '6:00',
@@ -1078,4 +1078,4 @@ trait OptionsFunction
 			)
 		);
 	}
-}
+}