diff options
| author | Bharat Mediratta <bharat@menalto.com> | 2009-01-17 00:52:50 +0000 |
|---|---|---|
| committer | Bharat Mediratta <bharat@menalto.com> | 2009-01-17 00:52:50 +0000 |
| commit | d568a1e9fd63c97eb86cd84a51bb6770747ec37c (patch) | |
| tree | 2b382bce985bce886c69d6d58377c5ce71a0cdc6 /modules/search/views/search_link.html.php | |
| parent | 91be7a38f883cd008d370f81ff68949de68eafbf (diff) | |
Implement relevance ranked boolean searching on a full text index of
item and comment data. Whew!
It's not pretty yet. And you have to manually update the index
currently in admin/maintenance. But it works.
Diffstat (limited to 'modules/search/views/search_link.html.php')
| -rw-r--r-- | modules/search/views/search_link.html.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/search/views/search_link.html.php b/modules/search/views/search_link.html.php index d5a5c47b..7be2b101 100644 --- a/modules/search/views/search_link.html.php +++ b/modules/search/views/search_link.html.php @@ -1,9 +1,9 @@ <?php defined("SYSPATH") or die("No direct script access.") ?> -<form id="gSearchForm"> +<form action="<?= url::site("search") ?>" id="gSearchForm"> <ul> <li> <label for="gSearch"><?= t("Search the gallery") ?></label> - <input type="text" name="search" id="gSearch"/> + <input type="text" name="q" id="gSearch"/> </li> <li> <input type="submit" value="<?= t("Go") ?>" /> |
