no entries found -> no articles found
This commit is contained in:
parent
7f4bd25627
commit
a82065a18b
|
@ -437,7 +437,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($lnum == 0) {
|
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) {
|
/* while ($lnum < HEADLINES_PER_PAGE) {
|
||||||
|
|
|
@ -60,11 +60,11 @@ create table ttrss_filters (id integer primary key auto_increment,
|
||||||
reg_exp varchar(250) not null,
|
reg_exp varchar(250) not null,
|
||||||
description varchar(250) not null default '') TYPE=InnoDB;
|
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,
|
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\'',
|
insert into ttrss_labels (sql_exp,description) values ('title = \'Interesting Topic\'',
|
||||||
'Example Label');
|
'Example Label');
|
||||||
|
|
Loading…
Reference in New Issue