Skip to content

Commit

Permalink
Merge pull request #4688 from U-Mebius/fix/tag_delete_error_message
Browse files Browse the repository at this point in the history
タグ削除エラー時のメッセージid修正
  • Loading branch information
okazy authored Sep 29, 2020
2 parents 178a12c + b4d51da commit 274fc36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Eccube/Controller/Admin/Product/TagController.php
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public function delete(Request $request, Tag $Tag)
} catch (\Exception $e) {
log_info('タグ削除エラー', [$Tag->getId(), $e]);

$message = trans('admin.common.delete_error.foreign_key', ['%name%' => $Tag->getName()]);
$message = trans('admin.common.delete_error_foreign_key', ['%name%' => $Tag->getName()]);
$this->addError($message, 'admin');
}

Expand Down

0 comments on commit 274fc36

Please sign in to comment.