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
こんにちは。決済状況一覧画面の一括操作プルダウンから選択して決定ボタンを押すときに、最後の項目(一括再オーソリ)を選択していると必ずエラーになります。
Controller\Admin\PaymentStatusController.php の186行目のif節 if (!isset($this->bulkActions[$id])) { の中に入ってしまうからで、 $bulkActionsのidが1からはじまるためにずれてしまっています。
if (!isset($this->bulkActions[$id])) {
手元ではこの行を if (!in_array($id, array_column($this->bulkActions, 'id'))) { に修正しました。
if (!in_array($id, array_column($this->bulkActions, 'id'))) {
GitHubでプルリクエストをしたことがなく、自信もないため、どなたか解決していただけますか。よろしくお願いします。
The text was updated successfully, but these errors were encountered:
#38 にプルリクエストしました。
Sorry, something went wrong.
No branches or pull requests
こんにちは。決済状況一覧画面の一括操作プルダウンから選択して決定ボタンを押すときに、最後の項目(一括再オーソリ)を選択していると必ずエラーになります。
Controller\Admin\PaymentStatusController.php の186行目のif節
if (!isset($this->bulkActions[$id])) {
の中に入ってしまうからで、
$bulkActionsのidが1からはじまるためにずれてしまっています。
手元ではこの行を
if (!in_array($id, array_column($this->bulkActions, 'id'))) {
に修正しました。
GitHubでプルリクエストをしたことがなく、自信もないため、どなたか解決していただけますか。よろしくお願いします。
The text was updated successfully, but these errors were encountered: