mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Add comment edit icon and form
Show an icon next to the comment deletion icon, which leads to a comment edit form. Signed-off-by: Marcel Korpel <marcel.korpel@gmail.com> Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
parent
8375d21210
commit
92e19e95f3
11 changed files with 139 additions and 9 deletions
|
@ -576,6 +576,25 @@ function salted_hash($passwd, $salt) {
|
|||
return md5($salt . $passwd);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a package comment
|
||||
*
|
||||
* @param int $comment_id The ID of the comment
|
||||
*
|
||||
* @return array The user ID and comment OR null, null in case of an error
|
||||
*/
|
||||
function comment_by_id($comment_id) {
|
||||
$dbh = DB::connect();
|
||||
$q = "SELECT UsersID, Comments FROM PackageComments ";
|
||||
$q.= "WHERE ID = " . intval($comment_id);
|
||||
$result = $dbh->query($q);
|
||||
if (!$result) {
|
||||
return array(null, null);
|
||||
}
|
||||
|
||||
return $result->fetch(PDO::FETCH_NUM);
|
||||
}
|
||||
|
||||
/**
|
||||
* Process submitted comments so any links can be followed
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue