summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hamann <michael@content-space.de>2011-06-14 20:44:53 +0200
committerMichael Hamann <michael@content-space.de>2011-06-14 20:48:36 +0200
commit7d939e4ea58754a44f0e564ecb163cbfde5b6ae7 (patch)
tree150b20df88235d13d474f03217bfaf883bace66d
parent5a2f326fba4cd3f692b56807e5a169b54253fda9 (diff)
downloadrpg-7d939e4ea58754a44f0e564ecb163cbfde5b6ae7.tar.gz
rpg-7d939e4ea58754a44f0e564ecb163cbfde5b6ae7.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.php2
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);