added customizable "HTML Escapes" for the top and bottom of the topic list

and post list pages; configurable through the host tools
This commit is contained in:
Eric J. Bowersox
2001-12-05 00:03:39 +00:00
parent 9cc34facf6
commit 9d34cc35f0
17 changed files with 699 additions and 58 deletions

View File

@@ -310,6 +310,14 @@ CREATE TABLE propconf (
PRIMARY KEY (confid, ndx)
);
# The conference custom HTML block table. There are two custom blocks, one at the
# top of the page, one at the bottom, each a maximum of 64K in length.
CREATE TABLE confcustom (
confid INT NOT NULL PRIMARY KEY,
htmltop TEXT,
htmlbottom TEXT
);
# The table describing topics within a conference.
CREATE TABLE topics (
topicid INT NOT NULL PRIMARY KEY AUTO_INCREMENT,