diff options
author | Michael Hamann <michael@content-space.de> | 2011-05-02 23:38:41 +0200 |
---|---|---|
committer | Michael Hamann <michael@content-space.de> | 2011-05-02 23:38:41 +0200 |
commit | 3d94d9edc886582c2fa43a6fc08010c91dea8e61 (patch) | |
tree | 8a7d25b7905df382ae2cf54a228479ff7304a145 /inc | |
parent | 26f7dbf522bd7473a47791384d73d5721bca8984 (diff) | |
download | rpg-3d94d9edc886582c2fa43a6fc08010c91dea8e61.tar.gz rpg-3d94d9edc886582c2fa43a6fc08010c91dea8e61.tar.bz2 |
Fix the wording of the search index check messages
Diffstat (limited to 'inc')
-rw-r--r-- | inc/infoutils.php | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/inc/infoutils.php b/inc/infoutils.php index f720e957a..ab9fe47ad 100644 --- a/inc/infoutils.php +++ b/inc/infoutils.php @@ -257,18 +257,17 @@ function check(){ } if ($index_corrupted) - msg('Your search index is corrupted. It might produce wrong results - unless you fix it. See + msg('The search index is corrupted. It might produce wrong results and most + probably needs to be rebuilt. See <a href="http://www.dokuwiki.org/faq:searchindex">faq:searchindex</a> - for ways to rebuild your search index.', -1); + for ways to rebuild the search index.', -1); elseif (!empty($lengths)) - msg('Your search index seems to be okay.', 1); + msg('The search index seems to be working', 1); else - msg('Your search index is empty. See + msg('The search index is empty. See <a href="http://www.dokuwiki.org/faq:searchindex">faq:searchindex</a> - for help on how to fix your search index unless you are using an - external indexer or your wiki is actually empty.'); - + for help on how to fix the search index. If the default indexer + isn\'t used or the wiki is actually empty this is normal.'); } /** |