From ebf4f4ec8e787153e16cc6cec6fc5fefadc97107 Mon Sep 17 00:00:00 2001 From: Nils Adermann Date: Sun, 28 May 2006 19:06:21 +0000 Subject: - added search by author_id to solve problems with looking up posts of users with a name containing wildcards - user based flood control (seperate limits for users and guests) [Bug #1357] - inform the user about ignored words if he receives a "no words specified" message - solve problems with the number of entries per page [Bug #1973] - different height for popup window ["Bug" #1814] - speed improvements for posting and search reindexing in fulltext_native -> use php files for ignore words and synonyms git-svn-id: file:///svn/phpbb/trunk@5981 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/acp/acp_search.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'phpBB/includes/acp') diff --git a/phpBB/includes/acp/acp_search.php b/phpBB/includes/acp/acp_search.php index f9726a7df8..c6bbbf18f7 100644 --- a/phpBB/includes/acp/acp_search.php +++ b/phpBB/includes/acp/acp_search.php @@ -47,11 +47,12 @@ class acp_search $search_types = $this->get_search_types(); $settings = array( - 'search_interval' => 'float', - 'load_search' => 'bool', - 'limit_search_load' => 'float', + 'search_interval' => 'float', + 'search_anonymous_interval' => 'float', + 'load_search' => 'bool', + 'limit_search_load' => 'float', 'min_search_author_chars' => 'integer', - 'search_store_results' => 'integer', + 'search_store_results' => 'integer', ); $search = null; @@ -168,6 +169,7 @@ class acp_search 'LIMIT_SEARCH_LOAD' => (float) $config['limit_search_load'], 'MIN_SEARCH_AUTHOR_CHARS' => (int) $config['min_search_author_chars'], 'SEARCH_INTERVAL' => (float) $config['search_interval'], + 'SEARCH_GUEST_INTERVAL' => (float) $config['search_anonymous_interval'], 'SEARCH_STORE_RESULTS' => (int) $config['search_store_results'], 'S_SEARCH_TYPES' => $search_options, -- cgit v1.2.1