mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
pkg_details.php: Fix broken HTML for package page with no dependencies
The "Required by" column already handles an empty list appropriately. Move a </div> tag to match that behavior in the "Dependencies" column Signed-off-by: canyonknight <canyonknight@gmail.com> Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
parent
4cf075811c
commit
cac3ef74cb
1 changed files with 1 additions and 1 deletions
|
@ -179,8 +179,8 @@ if ($row["MaintainerUID"]):
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<?php endwhile; ?>
|
<?php endwhile; ?>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
<div id="pkgreqs" class="listing">
|
<div id="pkgreqs" class="listing">
|
||||||
<h3><?php echo __('Required by') . " (" . count($requiredby) . ")"?></h3>
|
<h3><?php echo __('Required by') . " (" . count($requiredby) . ")"?></h3>
|
||||||
<?php if (count($requiredby) > 0): ?>
|
<?php if (count($requiredby) > 0): ?>
|
||||||
|
|
Loading…
Add table
Reference in a new issue