diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2017-02-03 23:52:31 +0100 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2017-02-03 23:54:31 +0100 |
commit | ac745f656d4c8d19cdcf8d843d6855c6b45a3974 (patch) | |
tree | a1ed0c31ca199702d36d54621b7c0359f94ec2b7 /web/html/packages.php | |
parent | 6cb8c041bc2264d02f7c86545170f45cc92d6caf (diff) | |
download | aur-ac745f656d4c8d19cdcf8d843d6855c6b45a3974.tar.gz aur-ac745f656d4c8d19cdcf8d843d6855c6b45a3974.tar.xz |
Split out the search form from pkg_search_page()
This makes it easier to display search results without showing the
search form.
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'web/html/packages.php')
-rw-r--r-- | web/html/packages.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/web/html/packages.php b/web/html/packages.php index 1b892781..8fd3266a 100644 --- a/web/html/packages.php +++ b/web/html/packages.php @@ -80,8 +80,9 @@ $(document).ready(function() { </script> <?php +include('pkg_search_form.php'); + if (isset($pkgid)) { - include('pkg_search_form.php'); if ($pkgid) { if (isset($_COOKIE["AURSID"])) { pkg_display_details($pkgid, $details, $_COOKIE["AURSID"]); |