no entries found -> no articles found

This commit is contained in:
Andrew Dolgov 2005-09-08 10:35:05 +01:00
parent 7f4bd25627
commit a82065a18b
2 changed files with 4 additions and 4 deletions

View File

@ -437,7 +437,7 @@
}
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) {

View 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');