diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2015-12-12 18:28:42 +0100 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2015-12-13 10:22:58 +0100 |
commit | e45609cf6645e650b8bafccd6860dec6aa9bb547 (patch) | |
tree | e090672dfc487a0bad4ef1dc3f180d42bbaca2b5 /web/lib/pkgbasefuncs.inc.php | |
parent | 5931d5ceec133ad1eee33faee96be061e011dacd (diff) | |
download | aur-e45609cf6645e650b8bafccd6860dec6aa9bb547.tar.gz aur-e45609cf6645e650b8bafccd6860dec6aa9bb547.tar.xz |
notify: Do not pass notification texts via pipes
Directly retrieve comments from the database instead of additionally
passing them via stdin.
Fixes FS#46742.
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'web/lib/pkgbasefuncs.inc.php')
-rw-r--r-- | web/lib/pkgbasefuncs.inc.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/web/lib/pkgbasefuncs.inc.php b/web/lib/pkgbasefuncs.inc.php index 7076c315..7b744d59 100644 --- a/web/lib/pkgbasefuncs.inc.php +++ b/web/lib/pkgbasefuncs.inc.php @@ -100,8 +100,9 @@ function pkgbase_add_comment($base_id, $uid, $comment) { $q.= intval($base_id) . ", " . $uid . ", "; $q.= $dbh->quote($comment) . ", UNIX_TIMESTAMP())"; $dbh->exec($q); + $comment_id = $dbh->lastInsertId(); - notify(array('comment', $uid, $base_id), $comment); + notify(array('comment', $uid, $base_id, $comment_id)); return array(true, __('Comment has been added.')); } @@ -401,7 +402,7 @@ function pkgbase_flag($base_ids, $comment) { $dbh->exec($q); foreach ($base_ids as $base_id) { - notify(array('flag', $uid, $base_id), $comment); + notify(array('flag', $uid, $base_id)); } return array(true, __("The selected packages have been flagged out-of-date.")); |