mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01: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
|
@ -27,6 +27,11 @@ if ($uid):
|
|||
|
||||
if (isset($_REQUEST['pkgsubmit'])) {
|
||||
|
||||
# Make sure authenticated user submitted the package themselves
|
||||
if (!check_token()) {
|
||||
$error = __("Invalid token for user action.");
|
||||
}
|
||||
|
||||
# Before processing, make sure we even have a file
|
||||
switch($_FILES['pfile']['error']) {
|
||||
case UPLOAD_ERR_INI_SIZE:
|
||||
|
@ -428,6 +433,7 @@ html_header("Submit");
|
|||
<fieldset>
|
||||
<div>
|
||||
<input type="hidden" name="pkgsubmit" value="1" />
|
||||
<input type="hidden" name="token" value="<?php print htmlspecialchars($_COOKIE['AURSID']) ?>" /> </div>
|
||||
</div>
|
||||
<p>
|
||||
<label for="id_category"><?php print __("Package Category"); ?>:</label>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue