mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Disable user package deletion
Users can no longer delete packages if they own them, only TUs and devs Signed-off-by: Callan Barrett <wizzomafizzo@gmail.com>
This commit is contained in:
parent
a49ee80aa2
commit
94a8053210
2 changed files with 4 additions and 6 deletions
|
@ -218,9 +218,6 @@ if ($_POST['action'] == "do_Flag" || isset($_POST['do_Flag'])) {
|
|||
#
|
||||
if ($atype == "Trusted User" || $atype == "Developer") {
|
||||
$result = db_query($q, $dbh);
|
||||
} else {
|
||||
$q.= "AND $field IN (0, " . uid_from_sid($_COOKIE["AURSID"]) . ")";
|
||||
$result = db_query($q, $dbh);
|
||||
}
|
||||
if ($result != Null && mysql_num_rows($result) > 0) {
|
||||
while ($row = mysql_fetch_assoc($result)) {
|
||||
|
|
|
@ -512,8 +512,7 @@ function package_details($id=0, $SID="") {
|
|||
echo " value='".__("Disown Packages")."'>\n";
|
||||
}
|
||||
|
||||
if ($row["MaintainerUID"] == uid_from_sid($SID) ||
|
||||
account_from_sid($SID) == "Trusted User" ||
|
||||
if (account_from_sid($SID) == "Trusted User" ||
|
||||
account_from_sid($SID) == "Developer") {
|
||||
echo "<input type='submit' class='button' name='do_Delete'";
|
||||
echo " value='".__("Delete Packages")."'>\n";
|
||||
|
@ -905,7 +904,9 @@ function pkg_search_page($SID="") {
|
|||
print "<option value='do_UnFlag'>".__("Unflag Out-of-date")."</option>\n";
|
||||
print "<option value='do_Adopt'>".__("Adopt Packages")."</option>\n";
|
||||
print "<option value='do_Disown'>".__("Disown Packages")."</option>\n";
|
||||
print "<option value='do_Delete'>".__("Delete Packages")."</option>\n";
|
||||
if (account_from_sid($SID) == "Trusted User" || account_from_sid($SID) == "Developer") {
|
||||
print "<option value='do_Delete'>".__("Delete Packages")."</option>\n";
|
||||
}
|
||||
print "<option value='do_Notify'>".__("Toggle Notify")."</option>\n";
|
||||
print "</select>";
|
||||
print "<input type='submit' class='button' style='width: 80px' value='" . __("Go") . "' />";
|
||||
|
|
Loading…
Add table
Reference in a new issue