mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Caught bug where we weren't deleting CommentNotify's on package delete
This commit is contained in:
parent
b1d5d74e84
commit
f1889a9e3d
1 changed files with 1 additions and 1 deletions
|
@ -244,7 +244,7 @@ if (isset($_REQUEST["do_Flag"])) {
|
|||
$result = db_query($q, $dbh);
|
||||
|
||||
# 7) delete from CommentNotify
|
||||
$q = "DELETE FROM CommentNotify WHERE ID = " . $id;
|
||||
$q = "DELETE FROM CommentNotify WHERE PkgID = " . $id;
|
||||
$result = db_query($q, $dbh);
|
||||
|
||||
# TODO question: Now that the package as been deleted, does
|
||||
|
|
Loading…
Add table
Reference in a new issue