From: Andrew Dolgov Date: Sat, 3 Sep 2005 10:37:40 +0000 (+0100) Subject: make Title matching default for filters, change description for filter "both" X-Git-Tag: 1.0.3~57 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=bdc00fe04d95d86e9514f4694ce2f9683b83db7f;p=tt-rss.git make Title matching default for filters, change description for filter "both" --- diff --git a/backend.php b/backend.php index 20847f00..82b9e9b6 100644 --- a/backend.php +++ b/backend.php @@ -648,7 +648,7 @@ print " diff --git a/ttrss_schema.sql b/ttrss_schema.sql index 79a58677..2c00b368 100644 --- a/ttrss_schema.sql +++ b/ttrss_schema.sql @@ -52,7 +52,7 @@ create table ttrss_filter_types (id integer primary key, insert into ttrss_filter_types (id,name,description) values (1, 'title', 'Title'); insert into ttrss_filter_types (id,name,description) values (2, 'content', 'Content'); insert into ttrss_filter_types (id,name,description) values (3, 'both', - 'Title and Content'); + 'Title or Content'); create table ttrss_filters (id serial primary key, filter_type integer not null references ttrss_filter_types(id),
"; - print_select("fadd_match", "", $filter_types); + print_select("fadd_match", "Title", $filter_types); print" Add filter