diff options
| author | Nils Adermann <naderman@naderman.de> | 2006-05-30 21:46:12 +0000 |
|---|---|---|
| committer | Nils Adermann <naderman@naderman.de> | 2006-05-30 21:46:12 +0000 |
| commit | 91a35359edc168c4a83b4ce55374c49f9754487e (patch) | |
| tree | b0845c7a0432b01304193aacb57005caa113f2f9 /phpBB/includes/search/fulltext_native.php | |
| parent | 64e7df76a682bd2df7059b69870f282219ed45f2 (diff) | |
| download | forums-91a35359edc168c4a83b4ce55374c49f9754487e.tar forums-91a35359edc168c4a83b4ce55374c49f9754487e.tar.gz forums-91a35359edc168c4a83b4ce55374c49f9754487e.tar.bz2 forums-91a35359edc168c4a83b4ce55374c49f9754487e.tar.xz forums-91a35359edc168c4a83b4ce55374c49f9754487e.zip | |
- add support for min/max of numerical search backend settings
- change word_text maximum length
- don't update search settings if nothing was changed
git-svn-id: file:///svn/phpbb/trunk@5993 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/search/fulltext_native.php')
| -rwxr-xr-x | phpBB/includes/search/fulltext_native.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/search/fulltext_native.php b/phpBB/includes/search/fulltext_native.php index 34a832d6ef..cdeb1d6c0e 100755 --- a/phpBB/includes/search/fulltext_native.php +++ b/phpBB/includes/search/fulltext_native.php @@ -1098,7 +1098,7 @@ class fulltext_native extends search_backend // These are fields required in the config table return array( 'tpl' => $tpl, - 'config' => array('fulltext_native_load_upd' => 'bool', 'fulltext_native_min_chars' => 'integer', 'fulltext_native_max_chars' => 'integer') + 'config' => array('fulltext_native_load_upd' => 'bool', 'fulltext_native_min_chars' => 'integer:0:252', 'fulltext_native_max_chars' => 'integer:0:252') ); } } |
