Skip to content

Commit

Permalink
[fix-25247] initial values for lucene_prefix_wildcard & lucene_sub_re…
Browse files Browse the repository at this point in the history
…levance in [settings]
  • Loading branch information
utesche committed Apr 10, 2019
1 parent d498802 commit 8568d01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup/sql/ilDBTemplate.php
Original file line number Diff line number Diff line change
Expand Up @@ -50482,13 +50482,13 @@ function setupILIASDatabase()
'module' => array('text', 'common'), 'keyword' => array('text', 'lucene_offline_filter'), 'value' => array('clob', '0')));

$ilDB->insert("settings", array(
'module' => array('text', 'common'), 'keyword' => array('text', 'lucene_prefix_wildcard'), 'value' => array('clob', '')));
'module' => array('text', 'common'), 'keyword' => array('text', 'lucene_prefix_wildcard'), 'value' => array('clob', '0')));

$ilDB->insert("settings", array(
'module' => array('text', 'common'), 'keyword' => array('text', 'lucene_show_relevance'), 'value' => array('clob', '1')));

$ilDB->insert("settings", array(
'module' => array('text', 'common'), 'keyword' => array('text', 'lucene_sub_relevance'), 'value' => array('clob', '')));
'module' => array('text', 'common'), 'keyword' => array('text', 'lucene_sub_relevance'), 'value' => array('clob', '0')));

$ilDB->insert("settings", array(
'module' => array('text', 'common'), 'keyword' => array('text', 'lucene_user_search'), 'value' => array('clob', '1')));
Expand Down

0 comments on commit 8568d01

Please sign in to comment.