summaryrefslogtreecommitdiffstats
path: root/web/html/packages.php
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2014-02-06 09:15:16 +0100
committerLukas Fleischer <archlinux@cryptocrack.de>2014-02-06 16:32:31 +0100
commit165bcba54e7cb2f21202fc24c01569fa63ce8baa (patch)
tree611dfd98f1188fa1eab50659540cfc1c8236ac53 /web/html/packages.php
parentb8a31dcc72703b4cd597e4ce681abcf6b0a3d507 (diff)
downloadaur-165bcba54e7cb2f21202fc24c01569fa63ce8baa.tar.gz
aur-165bcba54e7cb2f21202fc24c01569fa63ce8baa.tar.xz
Style fixes: Capitalization of "true" and "false"
Use "true" instead of "TRUE" and "false" instead of "FALSE" or "False". Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/html/packages.php')
-rw-r--r--web/html/packages.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/html/packages.php b/web/html/packages.php
index a9f62634..f5ecf946 100644
--- a/web/html/packages.php
+++ b/web/html/packages.php
@@ -64,11 +64,11 @@ if (check_token()) {
} 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);
+ 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);
+ 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'])) {
@@ -92,7 +92,7 @@ if (check_token()) {
} 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);
+ 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")) {