Changeset 702 for trunk/forum/includes/acp/acp_search.php
- Timestamp:
- Mar 31, 2010, 6:32:40 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/forum/includes/acp/acp_search.php
r400 r702 3 3 * 4 4 * @package acp 5 * @version $Id : acp_search.php 8479 2008-03-29 00:22:48Z naderman$5 * @version $Id$ 6 6 * @copyright (c) 2005 phpBB Group 7 7 * @license http://opensource.org/licenses/gpl-license.php GNU Public License … … 64 64 'limit_search_load' => 'float', 65 65 'min_search_author_chars' => 'integer', 66 'max_num_search_keywords' => 'integer', 66 67 'search_store_results' => 'integer', 67 68 ); … … 217 218 'SEARCH_GUEST_INTERVAL' => (float) $config['search_anonymous_interval'], 218 219 'SEARCH_STORE_RESULTS' => (int) $config['search_store_results'], 220 'MAX_NUM_SEARCH_KEYWORDS' => (int) $config['max_num_search_keywords'], 219 221 220 222 'S_SEARCH_TYPES' => $search_options, … … 592 594 ksort($this->state); 593 595 594 set_config('search_indexing_state', implode(',', $this->state) );596 set_config('search_indexing_state', implode(',', $this->state), true); 595 597 } 596 598
Note:
See TracChangeset
for help on using the changeset viewer.