You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
933 B
MySQL
14 lines
933 B
MySQL
18 years ago
|
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_PREFS_ACTIVE_TAB', 2, '', '', 1);
|
||
|
|
||
18 years ago
|
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_INFOBOX_DISABLE_OVERLAY', 1, 'false', '', 1);
|
||
|
|
||
18 years ago
|
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('STRIP_UNSAFE_TAGS', 1, 'true', 'Strip unsafe tags from articles', 3,
|
||
18 years ago
|
'Strip all but most common HTML tags when reading articles.');
|
||
18 years ago
|
|
||
18 years ago
|
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('BLACKLISTED_TAGS', 2, 'main, generic, misc', 'Blacklisted tags', 3,
|
||
|
'When auto-detecting tags in articles these tags will not be applied (comma-separated list).');
|
||
|
|
||
18 years ago
|
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_SEARCH_TOOLBAR', 1, 'false', 'Enable search toolbar',2);
|
||
|
|
||
18 years ago
|
update ttrss_version set schema_version = 17;
|