diff options
author | Dan McGee <dan@archlinux.org> | 2011-08-11 15:45:31 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2011-08-11 16:17:09 +0200 |
commit | 34fe0bec4cd29d1f8bcdfb34fb810556bfd939b2 (patch) | |
tree | 2a026bebcfe112603aab8ac7ef638e1aed575485 /web/html | |
parent | 5d74a994ff3e67bb2d3a3e27828785eb6bda94d9 (diff) | |
download | aur-34fe0bec4cd29d1f8bcdfb34fb810556bfd939b2.tar.gz aur-34fe0bec4cd29d1f8bcdfb34fb810556bfd939b2.tar.xz |
Use 'true' instead of 'True' everywhere
Signed-off-by: Dan McGee <dan@archlinux.org>
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/html')
-rw-r--r-- | web/html/packages.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web/html/packages.php b/web/html/packages.php index 4e68151d..dc06c7e4 100644 --- a/web/html/packages.php +++ b/web/html/packages.php @@ -37,15 +37,15 @@ if (isset($_POST['IDs'])) { # Determine what action to do $output = ""; if (current_action("do_Flag")) { - $output = pkg_flag($atype, $ids, True); + $output = pkg_flag($atype, $ids, true); } elseif (current_action("do_UnFlag")) { $output = pkg_flag($atype, $ids, False); } elseif (current_action("do_Adopt")) { - $output = pkg_adopt($atype, $ids, True); + $output = pkg_adopt($atype, $ids, true); } elseif (current_action("do_Disown")) { $output = pkg_adopt($atype, $ids, False); } elseif (current_action("do_Vote")) { - $output = pkg_vote($atype, $ids, True); + $output = pkg_vote($atype, $ids, true); } elseif (current_action("do_UnVote")) { $output = pkg_vote($atype, $ids, False); } elseif (current_action("do_Delete")) { |