diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2017-02-04 00:28:37 +0100 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2017-02-04 00:36:55 +0100 |
commit | b6aced9692dae4145b8848fb1da495901434a667 (patch) | |
tree | 39deaae2e405d1f267f7b3efe061491f58e2346e /web/html | |
parent | 3b4c6e72a966c5344976990ed3214f2e184c90ad (diff) | |
download | aur-b6aced9692dae4145b8848fb1da495901434a667.tar.gz aur-b6aced9692dae4145b8848fb1da495901434a667.tar.xz |
pkg_search_results.php: Split out package results box
Do not print the wrapper div container when calling pkg_search_page().
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'web/html')
-rw-r--r-- | web/html/packages.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/web/html/packages.php b/web/html/packages.php index ec6fc757..113a1145 100644 --- a/web/html/packages.php +++ b/web/html/packages.php @@ -98,11 +98,13 @@ if (isset($pkgid)) { $_GET['SB'] = 'p'; $_GET['SO'] = 'd'; } + echo '<div id="pkglist-results" class="box">'; if (isset($_COOKIE["AURSID"])) { pkg_search_page($_GET, true, $_COOKIE["AURSID"]); } else { pkg_search_page($_GET, true); } + echo '</div>'; } html_footer(AURWEB_VERSION); |