1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-30 19:31:29 +00:00

new option: OPEN_LINKS_IN_NEW_WINDOW (closes #47)

This commit is contained in:
Andrew Dolgov
2006-03-06 05:45:54 +01:00
parent e8ef3b9715
commit 68511f86ac
6 changed files with 13 additions and 1 deletions

View File

@@ -218,6 +218,8 @@ insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) valu
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('HIDE_READ_FEEDS', 1, 'false', 'Hide feeds with no unread messages',2);
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('OPEN_LINKS_IN_NEW_WINDOW', 1, 'true', 'Open article links in new browser window',2);
create table ttrss_user_prefs (
owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
pref_name varchar(250) not null references ttrss_prefs(pref_name) ON DELETE CASCADE,