Add missing execute() call -- tests ftw!

This commit is contained in:
Bharat Mediratta
2009-12-21 15:58:22 -08:00
parent cc4d7c672c
commit 31a545fa26
+2 -1
View File
@@ -21,7 +21,8 @@ class comment_event_Core {
static function item_deleted($item) {
db::build()
->delete("comments")
->where("item_id", "=", $item->id);
->where("item_id", "=", $item->id)
->execute();
}
static function user_deleted($user) {