]> git.wh0rd.org - tt-rss.git/blob - schema/versions/mysql/17.sql
new option: STRIP_UNSAFE_TAGS
[tt-rss.git] / schema / versions / mysql / 17.sql
1 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_PREFS_ACTIVE_TAB', 2, '', '', 1);
2
3 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_INFOBOX_DISABLE_OVERLAY', 1, 'false', '', 1);
4
5 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,
6 'This option strips all, but most common HTML tags when reading articles.');
7
8 update ttrss_version set schema_version = 17;