diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-10-04 19:51:59 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-10-04 19:51:59 +0200 |
commit | eb7efe33caff4d4493168d3db138d26884a85f77 (patch) | |
tree | 9bfe08987a13f36067c541f9851f838e0d031db3 /web/template/pkg_search_results.php | |
parent | 48ed8b772f4e1ab0817f036204e6a33e35aa9b63 (diff) | |
download | aur-eb7efe33caff4d4493168d3db138d26884a85f77.tar.gz aur-eb7efe33caff4d4493168d3db138d26884a85f77.tar.xz |
pkg_search_results.php: Word-wrap package description
Implements FS#31803.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/template/pkg_search_results.php')
-rw-r--r-- | web/template/pkg_search_results.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/template/pkg_search_results.php b/web/template/pkg_search_results.php index 9d40d804..0053607b 100644 --- a/web/template/pkg_search_results.php +++ b/web/template/pkg_search_results.php @@ -68,7 +68,7 @@ if (!$result): ?> <?php endif; ?> </td> <?php endif; ?> - <td><?= htmlspecialchars($row['Description'], ENT_QUOTES); ?></td> + <td class="wrap"><?= htmlspecialchars($row['Description'], ENT_QUOTES); ?></td> <td> <?php if (isset($row["Maintainer"])): ?> <a href="<?= get_uri('/packages/'); ?>?K=<?= htmlspecialchars($row['Maintainer'], ENT_QUOTES) ?>&SeB=m"><?= htmlspecialchars($row['Maintainer']) ?></a> |