summaryrefslogtreecommitdiffstats
path: root/web/template/pkg_details.php
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2012-07-18 07:57:53 +0200
committerLukas Fleischer <archlinux@cryptocrack.de>2012-07-18 08:07:18 +0200
commit51b8213ff1ba1f4db8396684f2afb82f0e38a90f (patch)
treec35e874d18d2d48f6648625df5d6b6a28431a295 /web/template/pkg_details.php
parentcaf997d9b1942a333af9126f451764599548b308 (diff)
downloadaurweb-51b8213ff1ba1f4db8396684f2afb82f0e38a90f.tar.xz
pkg_details.php: Remove field set in actions box
archweb uses "<div></div>" and "<p></p>" here. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/template/pkg_details.php')
-rw-r--r--web/template/pkg_details.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/web/template/pkg_details.php b/web/template/pkg_details.php
index 207ecfd..774d670 100644
--- a/web/template/pkg_details.php
+++ b/web/template/pkg_details.php
@@ -56,17 +56,19 @@ $sources = package_sources($row["ID"]);
<?php endif; ?>
</ul>
<form action="<?php echo htmlspecialchars(get_pkg_uri($row['Name']), ENT_QUOTES); ?>" method="post">
- <fieldset>
+ <div>
<input type="hidden" name="IDs[<?php echo $row['ID'] ?>]" value="1" />
<input type="hidden" name="ID" value="<?php echo $row['ID'] ?>" />
<input type="hidden" name="token" value="<?php echo htmlspecialchars($_COOKIE['AURSID']) ?>" />
+ </div>
+ <p>
<?php if ($row["MaintainerUID"] === NULL): ?>
<input type="submit" class="button" name="do_Adopt" value="<?php echo __("Adopt Packages") ?>" />
<?php elseif ($uid == $row["MaintainerUID"] ||
$atype == "Trusted User" || $atype == "Developer"): ?>
<input type="submit" class="button" name="do_Disown" value="<?php echo __("Disown Packages") ?>" />
<?php endif; ?>
- </fieldset>
+ </p>
</form>
</div>
</div>