diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2011-02-27 17:12:43 +0100 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2011-02-27 19:46:19 +0100 |
commit | 1e3fa38de5f940fef474fc3961c70b357b976308 (patch) | |
tree | 3474eadc3354f5312f245425deb9a2bf1fe64114 /web/template/actions_form.php | |
parent | 84c2491e63ef2797084f9378674d3e38248b7c24 (diff) | |
download | aur-1e3fa38de5f940fef474fc3961c70b357b976308.tar.gz aur-1e3fa38de5f940fef474fc3961c70b357b976308.tar.xz |
Define "Packages.SubmitterUID" and "Packages.MaintainerUID" as "NULL".
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/template/actions_form.php')
-rw-r--r-- | web/template/actions_form.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/template/actions_form.php b/web/template/actions_form.php index 41d8df9b..5eab2340 100644 --- a/web/template/actions_form.php +++ b/web/template/actions_form.php @@ -35,7 +35,7 @@ if ($row["OutOfDateTS"] === NULL) { echo " value='".__("UnFlag Out-of-date")."'>\n"; } -if ($row["MaintainerUID"] == 0) { +if ($row["MaintainerUID"] === NULL) { echo "<input type='submit' class='button' name='do_Adopt'"; echo " value='".__("Adopt Packages")."'>\n"; } else if ($uid == $row["MaintainerUID"] || |