From 9f7bc931259522fe7ae1ea9d6b5f4b17b60c97ad Mon Sep 17 00:00:00 2001 From: Nils Adermann Date: Sat, 18 Mar 2006 14:30:47 +0000 Subject: - 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 --- phpBB/search.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phpBB/search.php') 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'])); } } -- cgit v1.2.1