Ticket #495 (new バグ指摘) — at Initial Version
レビュー管理にて、登録URLの削除ができない不具合
| Reported by: | kajiwara | Owned by: | somebody |
|---|---|---|---|
| Priority: | 中 | Milestone: | EC-CUBE2.4.1 |
| Component: | 管理画面 | Version: | 2.4.0 |
| Keywords: | Cc: | ||
| 修正済み: |
Description
フォーラムにて kaorinstar 様のご指摘。
( http://xoops.ec-cube.net/modules/newbb/viewtopic.php?topic_id=4022&forum=9)
・バグ:管理画面の商品管理のレビュー管理で一度ホームページを
設定すると二度と削除できなくなる。
・原因:DBに登録する際に、文字列数が"0"の項目を除外しているため。
・解決方法:当方は以下の方法で解決しました。
/data/class/pages/admin/products/LC_Page_Admin_Products_ReviewEdit.php
前)189 if (strlen($array[ $data["column"] ]) > 0 ) {
後)189 if (strlen($array[ $data["column"] ]) > 0 || $data['column'] == 'reviewer_url') {
2.4.0にて不具合を確認。
Seasoft様 r18149 にて修正済。
Note: See
TracTickets for help on using
tickets.
