Actions
Bug(バグ) #1530
closedトピック削除時に画像が消えない
Status:
Works for me(再現せず)
Priority:
Normal(通常)
Assignee:
-
Target version:
-
Start date:
2010-08-25
Due date:
% Done:
0%
Estimated time:
3.6 で発生するか:
[QA]バグ通知済:
No
3.8 で発生するか:
opCommunityTopicPlugin 絞込条件:
Description
Overview (現象)¶
ComunityTpicPluginでトピック削除時に画像が消えない。
以下の修正を適用すれば解決するようです。
Index: PluginCommunityTopic.class.php =================================================================== --- PluginCommunityTopic.class.php (リビジョン 816) +++ PluginCommunityTopic.class.php (作業コピー) @@ -47,6 +47,16 @@ } } + public function preDelete($event) + { + $images = $this->getImages(); + foreach ($images as $image) + { + $image->delete(); + } + } + + // for pager public function getImageFilename() {
再現バージョン¶
Causes (原因)¶
Way to fix (修正内容)¶
報告元¶
http://sns.openpne.jp/diary/25115 から転載
Index: PluginCommunityTopic.class.php =================================================================== --- PluginCommunityTopic.class.php (リビジョン 816) +++ PluginCommunityTopic.class.php (作業コピー) @@ -47,6 +47,16 @@ } } + public function preDelete($event) + { + $images = $this->getImages(); + foreach ($images as $image) + { + $image->delete(); + } + } + + // for pager public function getImageFilename() { とか当ててくれると嬉しいです。
Updated by Masato Nagasawa almost 14 years ago
- Status changed from New(新規) to Works for me(再現せず)
- [QA]バグ通知済 set to No
1.0.1 にて確認しましたが、この現象を再現できませんでした。
Actions