diff options
author | Gabriel McManus <gmcmanus@gmail.com> | 2008-07-17 20:37:08 +1000 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-07-19 13:23:02 -0400 |
commit | e3b0584a493d4d2178bc7c48ff89fde766ff322b (patch) | |
tree | 607fc4a221b6dd6e3d8f6c3fdec310c534638cc6 /IkiWiki/Plugin | |
parent | c7b400af424847d9ed690e6126556cd186886c2a (diff) |
Use correct term prefixes when searching.
The Z term prefix is for stemming and shouldn't be used here.
X is for custom fields.
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r-- | IkiWiki/Plugin/search.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/search.pm b/IkiWiki/Plugin/search.pm index 822b5974e..eedfa6924 100644 --- a/IkiWiki/Plugin/search.pm +++ b/IkiWiki/Plugin/search.pm @@ -123,9 +123,9 @@ sub index (@) { #{{{ $tg->index_text($caption, 2); $tg->index_text($title, 2) if $title ne $caption; $tg->index_text($toindex); - $tg->index_text(lc($title), 1, "ZS"); # for title:foo + $tg->index_text(lc($title), 1, "S"); # for title:foo foreach my $link (@{$links{$params{page}}}) { - $tg->index_text(lc($link), 1, "ZLINK"); # for link:bar + $tg->index_text(lc($link), 1, "XLINK"); # for link:bar } $doc->add_term($pageterm); |