Skip to content

Commit

Permalink
メールフォームの和暦日付で、入力画面と確認画面の表示に差異がある問題を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
kawaseryoma committed Dec 20, 2024
1 parent b75f280 commit 03a8161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Baser/View/Helper/BcFormHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -1349,7 +1349,7 @@ protected function _generateOptions($name, $options = [])
break;
case 'day':
for($i = 1; $i <= 31; $i++) {
$data[sprintf('%02d', $i)] = $i;
$data[sprintf('%02d', $i)] = sprintf('%02d', $i);
}
break;
case 'month':
Expand Down

0 comments on commit 03a8161

Please sign in to comment.