diff options
Diffstat (limited to 'web/html')
-rw-r--r-- | web/html/index.php | 3 | ||||
-rw-r--r-- | web/html/pkgsearch.php | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/web/html/index.php b/web/html/index.php index 77d42b5..09e87cc 100644 --- a/web/html/index.php +++ b/web/html/index.php @@ -98,7 +98,8 @@ if (!isset($_COOKIE["AURSID"])) { print "</tr>\n"; print "<tr>\n"; print "<td colspan='2' align='right'> <br/>"; - print "<input type='submit' value='".__("Login")."'></td>"; + print "<input type='submit' class='button'"; + print " value='".__("Login")."'></td>"; print "</tr>\n"; print "</table>\n"; print "</form>\n"; diff --git a/web/html/pkgsearch.php b/web/html/pkgsearch.php index 3911b85..b47ee95 100644 --- a/web/html/pkgsearch.php +++ b/web/html/pkgsearch.php @@ -1,5 +1,6 @@ <? include("aur.inc"); # access AUR common functions +include("pkgs.inc"); # package specific functions include("search_po.inc"); # use some form of this for i18n support set_lang(); # this sets up the visitor's language check_sid(); # see if they're still logged in @@ -35,6 +36,7 @@ if ($atype && $_REQUEST["Action"] == "Something") { # do the default thing - give the user a search form that they # can specify: location, category, maintainer, name, 'my pkgs' # + pkg_search_page(); } print __("Under construction...")."<br/>\n"; |