#731 Full text search requires a string of at least three characters (configurable: full_text_needle_min)

SVN:trunk[3188]
This commit is contained in:
Romain Quetiez
2014-06-03 14:42:17 +00:00
parent e4bb0acd94
commit e8a7695353
5 changed files with 55 additions and 30 deletions

View File

@@ -736,6 +736,14 @@ class Config
'source_of_value' => '',
'show_in_conf_sample' => false,
),
'full_text_needle_min' => array(
'type' => 'integer',
'description' => 'Minimum size of the full text needle.',
'default' => 3,
'value' => 3,
'source_of_value' => '',
'show_in_conf_sample' => false,
),
'tracking_level_linked_set_default' => array(
'type' => 'integer',
'description' => 'Default tracking level if not explicitely set at the attribute level, for AttributeLinkedSet (defaults to NONE in case of a fresh install, LIST otherwise - this to preserve backward compatibility while upgrading from a version older than 2.0.3 - see TRAC #936)',