diff options
author | Andreas Gohr <andi@splitbrain.org> | 2009-01-19 20:09:20 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2009-01-19 20:09:20 +0100 |
commit | d3fb321928ab89178db9ff1482e6fa7f20c25f91 (patch) | |
tree | d5193f6bfdb3271ce1363884de3f33746bb6faad /inc/indexer.php | |
parent | a57c7caf07c9f9df0792f7636700528fa1e1d561 (diff) | |
download | rpg-d3fb321928ab89178db9ff1482e6fa7f20c25f91.tar.gz rpg-d3fb321928ab89178db9ff1482e6fa7f20c25f91.tar.bz2 |
Changed minimum word length for fulltext index to 2
darcs-hash:20090119190920-7ad00-5409285ea5c44379fec906d08f5ccb710eac5b6d.gz
Diffstat (limited to 'inc/indexer.php')
-rw-r--r-- | inc/indexer.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/indexer.php b/inc/indexer.php index 08ad03965..4b59684cd 100644 --- a/inc/indexer.php +++ b/inc/indexer.php @@ -12,7 +12,7 @@ require_once(DOKU_INC.'inc/utf8.php'); require_once(DOKU_INC.'inc/parserutils.php'); // set the minimum token length to use in the index (note, this doesn't apply to numeric tokens) -if (!defined('IDX_MINWORDLENGTH')) define('IDX_MINWORDLENGTH',3); +if (!defined('IDX_MINWORDLENGTH')) define('IDX_MINWORDLENGTH',2); // Asian characters are handled as words. The following regexp defines the // Unicode-Ranges for Asian characters |