mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
hmm... This commit does not increase the number of BBCodes. However, this does other things that we need to do first. This splits the usage of allow_* from the BBCode bitfield in forum descriptions, forum rules and group descriptions. This also fixes a tiny, tiny severe issue that nobody found :D I hope it works :P
git-svn-id: file:///svn/phpbb/trunk@6188 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -353,6 +353,7 @@ CREATE TABLE [phpbb_forums] (
|
||||
[forum_name] [varchar] (3000) DEFAULT ('') NOT NULL ,
|
||||
[forum_desc] [varchar] (8000) DEFAULT ('') NOT NULL ,
|
||||
[forum_desc_bitfield] [int] DEFAULT (0) NOT NULL ,
|
||||
[forum_desc_options] [int] DEFAULT (0) NOT NULL ,
|
||||
[forum_desc_uid] [varchar] (5) DEFAULT ('') NOT NULL ,
|
||||
[forum_link] [varchar] (255) DEFAULT ('') NOT NULL ,
|
||||
[forum_password] [varchar] (40) DEFAULT ('') NOT NULL ,
|
||||
@@ -361,6 +362,7 @@ CREATE TABLE [phpbb_forums] (
|
||||
[forum_rules] [varchar] (8000) DEFAULT ('') NOT NULL ,
|
||||
[forum_rules_link] [varchar] (255) DEFAULT ('') NOT NULL ,
|
||||
[forum_rules_bitfield] [int] DEFAULT (0) NOT NULL ,
|
||||
[forum_rules_options] [int] DEFAULT (0) NOT NULL ,
|
||||
[forum_rules_uid] [varchar] (5) DEFAULT ('') NOT NULL ,
|
||||
[forum_topics_per_page] [int] DEFAULT (0) NOT NULL ,
|
||||
[forum_type] [int] DEFAULT (0) NOT NULL ,
|
||||
@@ -458,6 +460,7 @@ CREATE TABLE [phpbb_groups] (
|
||||
[group_name] [varchar] (255) DEFAULT ('') NOT NULL ,
|
||||
[group_desc] [varchar] (8000) DEFAULT ('') NOT NULL ,
|
||||
[group_desc_bitfield] [int] DEFAULT (0) NOT NULL ,
|
||||
[group_desc_options] [int] DEFAULT (0) NOT NULL ,
|
||||
[group_desc_uid] [varchar] (5) DEFAULT ('') NOT NULL ,
|
||||
[group_display] [int] DEFAULT (0) NOT NULL ,
|
||||
[group_avatar] [varchar] (255) DEFAULT ('') NOT NULL ,
|
||||
|
Reference in New Issue
Block a user