Skip to content

Commit

Permalink
fix #3179 【5.1】エラーメッセージに100までの数値で入力するように指示があったが、実際には101まで入力できる
Browse files Browse the repository at this point in the history
  • Loading branch information
dovanhung committed Feb 28, 2024
1 parent ae28522 commit 5ea8f3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/bc-blog/src/Model/Table/BlogContentsTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@ public function validationDefault(Validator $validator): Validator

$validator->scalar('list_count')
->notEmptyString('list_count', __d('baser_core', '一覧表示件数を入力してください。'))
->range('list_count', [0, 101], __d('baser_core', '一覧表示件数は100までの数値で入力してください。'))
->range('list_count', [0, 100], __d('baser_core', '一覧表示件数は100までの数値で入力してください。'))
->add('list_count', 'halfText', [
'provider' => 'bc',
'rule' => 'halfText',
'message' => __d('baser_core', '一覧表示件数は半角で入力してください。')]);

$validator->scalar('feed_count')
->notEmptyString('feed_count', __d('baser_core', 'RSSフィード出力件数を入力してください。'))
->range('feed_count', [0, 101], __d('baser_core', 'RSSフィード出力件数は100までの数値で入力してください。'))
->range('feed_count', [0, 100], __d('baser_core', 'RSSフィード出力件数は100までの数値で入力してください。'))
->add('feed_count', 'halfText', [
'provider' => 'bc',
'rule' => 'halfText',
Expand Down

0 comments on commit 5ea8f3b

Please sign in to comment.