]> git.wh0rd.org - tt-rss.git/commitdiff
no entries found -> no articles found
authorAndrew Dolgov <fox@bah.spb.su>
Thu, 8 Sep 2005 09:35:05 +0000 (10:35 +0100)
committerAndrew Dolgov <fox@bah.spb.su>
Thu, 8 Sep 2005 09:35:05 +0000 (10:35 +0100)
backend.php
schema/ttrss_schema_mysql.sql

index 8b39ce5f312a24c730918567e844662e68227c7b..7903dcf55188b3293d7ec2a4e14df1a104158a55 100644 (file)
                }
 
                if ($lnum == 0) {
-                       print "<tr><td align='center'>No entries found.</td></tr>";
+                       print "<tr><td align='center'>No articles found.</td></tr>";
                }
 
 /*             while ($lnum < HEADLINES_PER_PAGE) {
index b7267e3b7a98dd767a8e9ace7af45848c0aced4c..0ed2b8df557aa146f1d688abd5236b59202817dc 100644 (file)
@@ -60,11 +60,11 @@ create table ttrss_filters (id integer primary key auto_increment,
        reg_exp varchar(250) not null,
        description varchar(250) not null default '') TYPE=InnoDB;
 
-drop table ttrss_labels;
+drop table if exists ttrss_labels;
 
-create table ttrss_labels (id integer primary key auto increment, 
+create table ttrss_labels (id integer primary key auto_increment, 
        sql_exp varchar(250) not null,
-       description varchar(250) not null);
+       description varchar(250) not null) TYPE=InnoDB;
 
 insert into ttrss_labels (sql_exp,description) values ('title = \'Interesting Topic\'',
        'Example Label');