}
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) {
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');