操作
Bug(バグ) #1530
完了トピック削除時に画像が消えない
ステータス:
Works for me(再現せず)
優先度:
Normal(通常)
担当者:
-
対象バージョン:
-
開始日:
2010-08-25
期日:
進捗率:
0%
予定工数:
3.6 で発生するか:
[QA]バグ通知済:
いいえ
3.8 で発生するか:
opCommunityTopicPlugin 絞込条件:
説明
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() { とか当ててくれると嬉しいです。
操作