Caught bug where we weren't deleting CommentNotify's on package delete

This commit is contained in:
pjmattal 2005-06-10 18:09:00 +00:00
parent b1d5d74e84
commit f1889a9e3d

View file

@ -244,7 +244,7 @@ if (isset($_REQUEST["do_Flag"])) {
$result = db_query($q, $dbh); $result = db_query($q, $dbh);
# 7) delete from CommentNotify # 7) delete from CommentNotify
$q = "DELETE FROM CommentNotify WHERE ID = " . $id; $q = "DELETE FROM CommentNotify WHERE PkgID = " . $id;
$result = db_query($q, $dbh); $result = db_query($q, $dbh);
# TODO question: Now that the package as been deleted, does # TODO question: Now that the package as been deleted, does