]> git.wh0rd.org - tt-rss.git/commitdiff
rename All Posts, change default labels in schema
authorAndrew Dolgov <fox@bah.spb.su>
Thu, 8 Sep 2005 13:05:48 +0000 (14:05 +0100)
committerAndrew Dolgov <fox@bah.spb.su>
Thu, 8 Sep 2005 13:05:48 +0000 (14:05 +0100)
schema/ttrss_schema_mysql.sql
schema/ttrss_schema_pgsql.sql
tt-rss.php

index 0ed2b8df557aa146f1d688abd5236b59202817dc..ae736cb6f266e8a9532186fa5b92d8268e340890 100644 (file)
@@ -66,9 +66,6 @@ create table ttrss_labels (id integer primary key auto_increment,
        sql_exp varchar(250) not null,
        description varchar(250) not null) TYPE=InnoDB;
 
-insert into ttrss_labels (sql_exp,description) values ('title = \'Interesting Topic\'',
-       'Example Label');
-
 insert into ttrss_labels (sql_exp,description) values ('unread = true', 
        'Unread articles');
 
index 0bb704483a7773f8c2c142c985caef17b3dbc206..31183173bd51e2e819f6f104954396456bed9fe8 100644 (file)
@@ -65,9 +65,6 @@ create table ttrss_labels (id serial primary key,
        sql_exp varchar(250) not null,
        description varchar(250) not null);
 
-insert into ttrss_labels (sql_exp,description) values ('title = \'Interesting Topic\'',
-       'Example Label');
-
 insert into ttrss_labels (sql_exp,description) values ('unread = true', 
        'Unread articles');
 
index 78fcd3223dc200cd85fd9aad9f00424f0089b36f..445f8ab91342140bd10b77f1f68dacedc7b4c7b2 100644 (file)
@@ -77,7 +77,7 @@
                &nbsp;View: 
                
                <select id="viewbox" onchange="javascript:viewCurrentFeed(0, '')">
-                       <option>All Posts</option>
+                       <option>All Articles</option>
                        <option>Starred</option>
                        <option selected>Unread</option>
                </select>