1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-29 10:50:25 +02:00

FAQs now supports submitted questions from anonymous users and improved tag search/urls.

This commit is contained in:
Cameron
2015-03-31 06:26:06 -07:00
parent cae329a1f9
commit 24f2b22e6a
7 changed files with 124 additions and 41 deletions

View File

@@ -6,6 +6,7 @@ CREATE TABLE faqs (
faq_comment tinyint(1) unsigned NOT NULL default '0',
faq_datestamp int(10) unsigned NOT NULL default '0',
faq_author int(10) unsigned default NULL,
faq_author_ip varchar(45) NOT NULL default '',
faq_tags varchar(255) NOT NULL default '',
faq_order int(6) unsigned NOT NULL default '0',
PRIMARY KEY (faq_id)