mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 09:43:03 +00:00
Merge branch 'maint'
Conflicts: web/html/account.php web/html/addvote.php web/html/pkgsubmit.php web/lib/acctfuncs.inc.php web/template/actions_form.php web/template/pkg_comment_form.php web/template/pkg_comments.php web/template/pkg_details.php web/template/pkg_search_results.php web/template/tu_details.php
This commit is contained in:
commit
f3ce74c714
15 changed files with 78 additions and 46 deletions
|
@ -624,7 +624,7 @@ function user_suspended($id, $dbh=NULL) {
|
|||
$result = db_query($q, $dbh);
|
||||
if ($result) {
|
||||
$row = mysql_fetch_row($result);
|
||||
if ($result[0] == 1 ) {
|
||||
if ($row[0]) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -75,6 +75,16 @@ function check_sid($dbh=NULL) {
|
|||
return;
|
||||
}
|
||||
|
||||
# Verify the supplied token matches the expected token for POST forms
|
||||
#
|
||||
function check_token() {
|
||||
if (isset($_POST['token'])) {
|
||||
return ($_POST['token'] == $_COOKIE['AURSID']);
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
# verify that an email address looks like it is legitimate
|
||||
#
|
||||
function valid_email($addy) {
|
||||
|
|
|
@ -395,7 +395,7 @@ function package_details($id=0, $SID="", $dbh=NULL) {
|
|||
# Actions Bar
|
||||
if ($SID) {
|
||||
include('actions_form.php');
|
||||
if (isset($_REQUEST['comment'])) {
|
||||
if (isset($_REQUEST['comment']) && check_token()) {
|
||||
$uid = uid_from_sid($SID, $dbh);
|
||||
add_package_comment($id, $uid, $_REQUEST['comment'], $dbh);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue