diff options
author | Michael Hamann <michael@content-space.de> | 2011-06-14 20:44:53 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2011-06-14 21:29:44 +0200 |
commit | 0616960e31c16c8a5b1462479a6e7290a2b8dbe4 (patch) | |
tree | 11aff5592e4663f4438cc9b6f8df6bbe2dd1748c | |
parent | 8dd5c1d6612a6c7f217da041703183200405fa90 (diff) | |
download | rpg-0616960e31c16c8a5b1462479a6e7290a2b8dbe4.tar.gz rpg-0616960e31c16c8a5b1462479a6e7290a2b8dbe4.tar.bz2 |
Force search index update after fixing the lowercasing of words
This increases the indexer version in order to force a rebuild of the
search index in order to "repair" the search index that might contain
uppercase words
-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 546b2a288..9d8d6f99b 100644 --- a/inc/indexer.php +++ b/inc/indexer.php @@ -10,7 +10,7 @@ if(!defined('DOKU_INC')) die('meh.'); // Version tag used to force rebuild on upgrade -define('INDEXER_VERSION', 4); +define('INDEXER_VERSION', 5); // 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',2); |