$i) { $id = intval($id); if ($id > 0) { $ids[] = $id; } } } # Determine what action to do $ret = false; $output = ""; if (check_token()) { if (current_action("do_Flag")) { list($ret, $output) = pkg_flag($atype, $ids); } elseif (current_action("do_UnFlag")) { list($ret, $output) = pkg_unflag($atype, $ids); } elseif (current_action("do_Adopt")) { list($ret, $output) = pkg_adopt($atype, $ids, true); } elseif (current_action("do_Disown")) { list($ret, $output) = pkg_adopt($atype, $ids, false); } elseif (current_action("do_Vote")) { list($ret, $output) = pkg_vote($atype, $ids, true); } elseif (current_action("do_UnVote")) { list($ret, $output) = pkg_vote($atype, $ids, false); } elseif (current_action("do_Delete")) { if (isset($_POST['confirm_Delete'])) { if (!isset($_POST['merge_Into']) || empty($_POST['merge_Into'])) { list($ret, $output) = pkg_delete($atype, pkgbase_from_pkgid($ids), NULL); unset($_GET['ID']); } else { $merge_base_id = pkgbase_from_name($_POST['merge_Into']); if ($merge_base_id) { list($ret, $output) = pkg_delete($atype, pkgbase_from_pkgid($ids), $merge_base_id); unset($_GET['ID']); } else { $output = __("Cannot find package to merge votes and comments into."); } } } else { $output = __("The selected packages have not been deleted, check the confirmation checkbox."); } } elseif (current_action("do_Notify")) { list($ret, $output) = pkg_notify($atype, $ids); } elseif (current_action("do_UnNotify")) { list($ret, $output) = pkg_notify($atype, $ids, false); } elseif (current_action("do_DeleteComment")) { list($ret, $output) = pkg_delete_comment($atype); } elseif (current_action("do_ChangeCategory")) { list($ret, $output) = pkg_change_category($pkgid, $atype); } if (isset($_REQUEST['comment'])) { $uid = uid_from_sid($_COOKIE["AURSID"]); add_package_comment($pkgid, $uid, $_REQUEST['comment']); $ret = true; } if ($ret) { /* Redirect back to package page on success. */ header('Location: ' . get_pkg_uri($pkgname)); exit(); } } # Get package details after package actions have been attempted, FS#34508 $details = array(); if (isset($pkgname)) { $details = get_package_details($pkgid); } html_header($title, $details); ?>

\n"; } } else { if (!isset($_GET['K']) && !isset($_GET['SB'])) { $_GET['SB'] = 'v'; $_GET['SO'] = 'd'; } if (isset($_COOKIE["AURSID"])) { pkg_search_page($_COOKIE["AURSID"]); } else { pkg_search_page(); } } html_footer(AUR_VERSION);