aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/search.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2006-03-18 14:30:47 +0000
committerNils Adermann <naderman@naderman.de>2006-03-18 14:30:47 +0000
commit9f7bc931259522fe7ae1ea9d6b5f4b17b60c97ad (patch)
tree96686f10c69d0dedfe966c4ead240f4169013656 /phpBB/search.php
parentd9c48b494c6b0b2cf49670eaa5fdb503e1312557 (diff)
downloadforums-9f7bc931259522fe7ae1ea9d6b5f4b17b60c97ad.tar
forums-9f7bc931259522fe7ae1ea9d6b5f4b17b60c97ad.tar.gz
forums-9f7bc931259522fe7ae1ea9d6b5f4b17b60c97ad.tar.bz2
forums-9f7bc931259522fe7ae1ea9d6b5f4b17b60c97ad.tar.xz
forums-9f7bc931259522fe7ae1ea9d6b5f4b17b60c97ad.zip
- Lesson learned: If you rename something rename it in all places and not just in a few :)
(min_search_chars/max_search_chars/load_search_upd now prefixed with fulltext_phpbb) - search_indexing_state should not be dynamic - a topic link should link to a topic ;-) git-svn-id: file:///svn/phpbb/trunk@5652 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/search.php')
-rw-r--r--phpBB/search.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/search.php b/phpBB/search.php
index afd35c50f8..13d64a7230 100644
--- a/phpBB/search.php
+++ b/phpBB/search.php
@@ -223,7 +223,7 @@ if ($keywords || $author || $search_id)
$search->split_keywords($keywords, $search_terms);
if (!sizeof($search->split_words) && !sizeof($author_id_ary) && !$search_id)
{
- trigger_error(sprintf($user->lang['NO_KEYWORDS'], $config['min_search_chars'], $config['max_search_chars']));
+ trigger_error(sprintf($user->lang['NO_KEYWORDS'], $search->word_length['min'], $search->word_length['max']));
}
}