Fix package detail action buttons

Drop-down boxes broke them, now they work again.
Yippee!

Signed-off-by: Simo Leone <simo@archlinux.org>
This commit is contained in:
Simo Leone 2008-01-21 16:23:28 -06:00
parent 675e5fc841
commit 2bcd8ff1db

View file

@ -55,7 +55,7 @@ isset($_POST["IDs"]) ? $ids = $_POST["IDs"] : $ids = array();
# determine what button the visitor clicked # determine what button the visitor clicked
# #
if ($_POST['action'] == "do_Flag") { if ($_POST['action'] == "do_Flag" || isset($_POST['do_Flag'])) {
if (!$atype) { if (!$atype) {
print __("You must be logged in before you can flag packages."); print __("You must be logged in before you can flag packages.");
print "<br />\n"; print "<br />\n";
@ -111,7 +111,7 @@ if ($_POST['action'] == "do_Flag") {
} }
} }
} elseif ($_POST['action'] == "do_UnFlag") { } elseif ($_POST['action'] == "do_UnFlag" || isset($_POST['do_UnFlag'])) {
if (!$atype) { if (!$atype) {
print __("You must be logged in before you can unflag packages."); print __("You must be logged in before you can unflag packages.");
print "<br />\n"; print "<br />\n";
@ -148,7 +148,7 @@ if ($_POST['action'] == "do_Flag") {
} }
} elseif ($_POST['action'] == "do_Disown") { } elseif ($_POST['action'] == "do_Disown" || isset($_POST['do_Disown'])) {
if (!$atype) { if (!$atype) {
print __("You must be logged in before you can disown packages."); print __("You must be logged in before you can disown packages.");
print "<br />\n"; print "<br />\n";
@ -204,7 +204,7 @@ if ($_POST['action'] == "do_Flag") {
} }
} elseif ($_POST['action'] == "do_Delete") { } elseif ($_POST['action'] == "do_Delete" || isset($_POST['do_Delete'])) {
if (!$atype) { if (!$atype) {
print __("You must be logged in before you can disown packages."); print __("You must be logged in before you can disown packages.");
print "<br />\n"; print "<br />\n";
@ -309,7 +309,7 @@ if ($_POST['action'] == "do_Flag") {
} # end if (!empty($ids)) } # end if (!empty($ids))
} # end if (!atype) } # end if (!atype)
} elseif ($_POST['action'] == "do_Adopt") { } elseif ($_POST['action'] == "do_Adopt" || isset($_POST['do_Adopt'])) {
if (!$atype) { if (!$atype) {
print __("You must be logged in before you can adopt packages."); print __("You must be logged in before you can adopt packages.");
print "<br />\n"; print "<br />\n";
@ -367,7 +367,7 @@ if ($_POST['action'] == "do_Flag") {
} }
} elseif ($_POST['action'] == "do_Vote") { } elseif ($_POST['action'] == "do_Vote" || isset($_POST['do_Vote'])) {
if (!$atype) { if (!$atype) {
print __("You must be logged in before you can vote for packages."); print __("You must be logged in before you can vote for packages.");
print "<br />\n"; print "<br />\n";
@ -425,7 +425,7 @@ if ($_POST['action'] == "do_Flag") {
} }
} elseif ($_POST['action'] == "do_UnVote") { } elseif ($_POST['action'] == "do_UnVote" || isset($_POST['do_UnVote'])) {
if (!$atype) { if (!$atype) {
print __("You must be logged in before you can un-vote for packages."); print __("You must be logged in before you can un-vote for packages.");
print "<br />\n"; print "<br />\n";
@ -484,7 +484,7 @@ if ($_POST['action'] == "do_Flag") {
package_details($_GET["ID"], $_COOKIE["AURSID"]); package_details($_GET["ID"], $_COOKIE["AURSID"]);
} }
} elseif ($_POST['action'] == "do_Notify") { } elseif ($_POST['action'] == "do_Notify" || isset($_POST['do_Notify'])) {
# I realize that the implementation here seems a bit convoluted, but we want to # I realize that the implementation here seems a bit convoluted, but we want to
# ensure that everything happens as it should, even if someone called this page # ensure that everything happens as it should, even if someone called this page
# without having clicked a button somewhere (naughty naughty). This also leaves # without having clicked a button somewhere (naughty naughty). This also leaves