We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
実質 EXIST_CHECK を兼ねてしまっている気がする。
eccube2-weekly-20230404 をカスタマイズした環境で発覚した。素のソースでは検証していない。
修正案
--- data/class/SC_CheckError.php +++ data/class/SC_CheckError.php @@ -1804,6 +1804,12 @@ public function PREF_CHECK($value) $key = $value[1]; $pref_id = $this->arrParam[$key]; + + // 未入力時はチェックしない。 + if (strlen($pref_id) == 0) { + return; + } + $objQuery = SC_Query_Ex::getSingletonInstance(); $exists = $objQuery->exists('mtb_pref', 'id = ?', array($pref_id)); if (!$exists) {
The text was updated successfully, but these errors were encountered:
nanasess
Successfully merging a pull request may close this issue.
実質 EXIST_CHECK を兼ねてしまっている気がする。
eccube2-weekly-20230404 をカスタマイズした環境で発覚した。素のソースでは検証していない。
修正案
The text was updated successfully, but these errors were encountered: