1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-04 11:49:15 +00:00

new option - ALLOW_DUPLICATE_POSTS

This commit is contained in:
Andrew Dolgov
2005-11-19 11:32:59 +01:00
parent 35d8cf43bc
commit 71604ca4e9
3 changed files with 25 additions and 5 deletions

View File

@@ -169,6 +169,10 @@ insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_SPLASH', 1, 'false', 'Enable loading splashscreen',2);
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('ALLOW_DUPLICATE_POSTS', 1, 'true', 'Allow duplicate posts',1,
'This option is useful when you are reading several planet-type aggregators with partially colliding userbase.
When disabled, it forces same posts from different sources to appear only once');
create table ttrss_user_prefs (
owner_uid integer not null,
pref_name varchar(250),