mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-19 06:51:33 +02:00
- added "display_on_posting" setting to custom bbcodes (creates a button with the bbcode tag)
- fixed forum editing and parent id selection - completely removed HTML support (it only creates security problems) - changed cache_moderators() to reflect permission changes git-svn-id: file:///svn/phpbb/trunk@5603 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -233,6 +233,7 @@ END;
|
||||
CREATE TABLE phpbb_bbcodes (
|
||||
bbcode_id number(3) DEFAULT '0' NOT NULL,
|
||||
bbcode_tag varchar2(16) DEFAULT '',
|
||||
display_on_posting number(1) DEFAULT '0' NOT NULL,
|
||||
bbcode_match varchar2(255) DEFAULT '',
|
||||
bbcode_tpl clob DEFAULT '',
|
||||
first_pass_match varchar2(255) DEFAULT '',
|
||||
@@ -243,6 +244,9 @@ CREATE TABLE phpbb_bbcodes (
|
||||
)
|
||||
/
|
||||
|
||||
CREATE INDEX display_on_posting on phpbb_bbcodes (display_on_posting)
|
||||
/
|
||||
|
||||
/*
|
||||
Table: phpbb_bookmarks
|
||||
*/
|
||||
@@ -793,7 +797,6 @@ CREATE TABLE phpbb_posts (
|
||||
post_approved number(1) DEFAULT '1' NOT NULL,
|
||||
post_reported number(1) DEFAULT '0' NOT NULL,
|
||||
enable_bbcode number(1) DEFAULT '1' NOT NULL,
|
||||
enable_html number(1) DEFAULT '0' NOT NULL,
|
||||
enable_smilies number(1) DEFAULT '1' NOT NULL,
|
||||
enable_magic_url number(1) DEFAULT '1' NOT NULL,
|
||||
enable_sig number(1) DEFAULT '1' NOT NULL,
|
||||
@@ -854,7 +857,6 @@ CREATE TABLE phpbb_privmsgs (
|
||||
message_time number(11) DEFAULT '0' NOT NULL,
|
||||
message_reported number(1) DEFAULT '0' NOT NULL,
|
||||
enable_bbcode number(1) DEFAULT '1' NOT NULL,
|
||||
enable_html number(1) DEFAULT '0' NOT NULL,
|
||||
enable_smilies number(1) DEFAULT '1' NOT NULL,
|
||||
enable_magic_url number(1) DEFAULT '1' NOT NULL,
|
||||
enable_sig number(1) DEFAULT '1' NOT NULL,
|
||||
|
Reference in New Issue
Block a user