dever 4 년 전
부모
커밋
09edfa9766
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      src/Lib/Input.php

+ 4 - 4
src/Lib/Input.php

@@ -1152,7 +1152,7 @@ class Input
      *
      * @return string
      */
-    public static function _time($param, $type = true)
+    public static function _time($param, $type = false)
     {
         return self::_day($param, $type);
     }
@@ -1162,7 +1162,7 @@ class Input
      *
      * @return string
      */
-    public static function _day($param, $type = true)
+    public static function _day($param, $type = false)
     {
         return self::_date($param, $type, 'day', 'Y-m-d');
     }
@@ -1172,7 +1172,7 @@ class Input
      *
      * @return string
      */
-    public static function _year($param, $type = true)
+    public static function _year($param, $type = false)
     {
         return self::_date($param, $type, 'year', 'Y');
     }
@@ -1182,7 +1182,7 @@ class Input
      *
      * @return string
      */
-    public static function _month($param, $type = true)
+    public static function _month($param, $type = false)
     {
         return self::_date($param, $type, 'month', 'Y-m');
     }