mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Do not allow empty comments
Fixes FS#45870. Signed-off-by: Marcel Korpel <marcel.korpel@gmail.com> Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
parent
60433a930d
commit
095986b449
2 changed files with 11 additions and 2 deletions
|
@ -81,6 +81,10 @@ function pkgbase_comments($base_id, $limit, $include_deleted) {
|
|||
function pkgbase_add_comment($base_id, $uid, $comment) {
|
||||
$dbh = DB::connect();
|
||||
|
||||
if (trim($comment) == '') {
|
||||
return array(false, __('Comment cannot be empty.'));
|
||||
}
|
||||
|
||||
$q = "INSERT INTO PackageComments ";
|
||||
$q.= "(PackageBaseID, UsersID, Comments, CommentTS) VALUES (";
|
||||
$q.= intval($base_id) . ", " . $uid . ", ";
|
||||
|
@ -102,6 +106,8 @@ function pkgbase_add_comment($base_id, $uid, $comment) {
|
|||
if ($result) {
|
||||
notify(array('comment', $uid, $base_id), $comment);
|
||||
}
|
||||
|
||||
return array(true, __('Comment has been added.'));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -860,6 +866,10 @@ function pkgbase_edit_comment($comment) {
|
|||
return array(false, __("Missing comment ID."));
|
||||
}
|
||||
|
||||
if (trim($comment) == '') {
|
||||
return array(false, __('Comment cannot be empty.'));
|
||||
}
|
||||
|
||||
$dbh = DB::connect();
|
||||
if (can_edit_comment($comment_id)) {
|
||||
$q = "UPDATE PackageComments ";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue