mirror of
https://github.com/e107inc/e107.git
synced 2025-08-08 23:56:58 +02:00
More work on plugin.xml support
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
CREATE TABLE forum (
|
||||
CREATE TABLE forum (
|
||||
forum_id int(10) unsigned NOT NULL auto_increment,
|
||||
forum_name varchar(250) NOT NULL default '',
|
||||
forum_description text NOT NULL,
|
||||
@@ -14,7 +14,7 @@ CREATE TABLE forum (
|
||||
forum_order int(10) unsigned NOT NULL default '0',
|
||||
forum_postclass tinyint(3) unsigned NOT NULL default '0',
|
||||
PRIMARY KEY (forum_id)
|
||||
) TYPE=MyISAM AUTO_INCREMENT=1
|
||||
) TYPE=MyISAM;
|
||||
|
||||
CREATE TABLE forum_t (
|
||||
thread_id int(10) unsigned NOT NULL auto_increment,
|
||||
@@ -35,5 +35,5 @@ CREATE TABLE forum_t (
|
||||
KEY thread_parent (thread_parent),
|
||||
KEY thread_datestamp (thread_datestamp),
|
||||
KEY thread_forum_id (thread_forum_id)
|
||||
) TYPE=MyISAM AUTO_INCREMENT=1;
|
||||
) TYPE=MyISAM;
|
||||
|
||||
|
@@ -16,7 +16,8 @@
|
||||
<latest>true</latest>
|
||||
<status>true</status>
|
||||
</administration>
|
||||
<menuLink name="Forum" value="forum/forum.php" perm='everyone'/>
|
||||
<menuLink name="Forum" url="forum/forum.php" perm='everyone'/>
|
||||
<menuLink name="Forum1" url="forum/forum1.php" perm='everyone' active='false'/>
|
||||
<mainPrefs>
|
||||
<pref name="forum_show_topics" value="1" />
|
||||
<pref name="forum_postfix" value="[more...]" />
|
||||
|
Reference in New Issue
Block a user