1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-11 11:13:59 +02:00

- some adjustments for search related config options

- one year is 365 days long (52 * 7 = 364, but we have one more day each year ;-)) [Bug #1181]
- fixed search own posts link in UCP [Bug #1163]
- corrections to timezone selection [Bug #1148]
- fix quickmod tools on post details page [Bug #1188]


git-svn-id: file:///svn/phpbb/trunk@5705 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Nils Adermann
2006-03-23 19:23:52 +00:00
parent cccada69c0
commit 56a70484ef
16 changed files with 31 additions and 31 deletions

View File

@@ -47,7 +47,7 @@ class acp_search
$search_types = $this->get_search_types();
$settings = array(
'search_interval' => 'integer',
'search_interval' => 'float',
'load_search' => 'bool',
'limit_search_load' => 'float',
'min_search_author_chars' => 'integer',
@@ -165,10 +165,10 @@ class acp_search
$this->page_title = 'ACP_SEARCH_SETTINGS';
$template->assign_vars(array(
'LIMIT_SEARCH_LOAD' => $config['limit_search_load'],
'MIN_SEARCH_AUTHOR_CHARS' => $config['min_search_author_chars'],
'SEARCH_INTERVAL' => $config['search_interval'],
'SEARCH_STORE_RESULTS' => $config['search_store_results'],
'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_STORE_RESULTS' => (int) $config['search_store_results'],
'S_SEARCH_TYPES' => $search_options,
'S_YES_SEARCH' => (bool) $config['load_search'],