pkg_details.php: Hide "Adopt" button from logged out users

Reported-by: canyonknight <canyonknight@gmail.com>
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
Lukas Fleischer 2012-09-18 14:32:02 +02:00
parent c318a50435
commit f37f0eaea1

View file

@ -56,6 +56,7 @@ $sources = package_sources($row["ID"]);
<?php endif; ?> <?php endif; ?>
<?php endif; ?> <?php endif; ?>
</ul> </ul>
<?php if ($uid): ?>
<form action="<?php echo htmlspecialchars(get_pkg_uri($row['Name']), ENT_QUOTES); ?>" method="post"> <form action="<?php echo htmlspecialchars(get_pkg_uri($row['Name']), ENT_QUOTES); ?>" method="post">
<div> <div>
<input type="hidden" name="IDs[<?php echo $row['ID'] ?>]" value="1" /> <input type="hidden" name="IDs[<?php echo $row['ID'] ?>]" value="1" />
@ -71,6 +72,7 @@ $sources = package_sources($row["ID"]);
<?php endif; ?> <?php endif; ?>
</p> </p>
</form> </form>
<?php endif; ?>
</div> </div>
</div> </div>