diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2004-05-30 19:24:53 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2004-05-30 19:24:53 +0000 |
| commit | 6aa42b69abe798388aad4f7e6bf943dfb608e896 (patch) | |
| tree | 0b5f6dc0ed309bf7a59cf32714d14bf848b7637d /phpBB/install | |
| parent | ae93b82e19612c9ab99c11ca9641c1fca32588d4 (diff) | |
| download | forums-6aa42b69abe798388aad4f7e6bf943dfb608e896.tar forums-6aa42b69abe798388aad4f7e6bf943dfb608e896.tar.gz forums-6aa42b69abe798388aad4f7e6bf943dfb608e896.tar.bz2 forums-6aa42b69abe798388aad4f7e6bf943dfb608e896.tar.xz forums-6aa42b69abe798388aad4f7e6bf943dfb608e896.zip | |
- forum rules + link to forum rules
- three new (tiny) functions added to functions_posting responsible for handling text with bbcode/smilies/urls, use them at items all over across phpbb...
- some bugfixes within admin_forums and other files
- new admin_board layout (much safer, security wise)
git-svn-id: file:///svn/phpbb/trunk@4903 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install')
| -rw-r--r-- | phpBB/install/schemas/mysql_schema.sql | 3 | ||||
| -rw-r--r-- | phpBB/install/schemas/schema_data.sql | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql index fc4d88149c..65006eb46f 100644 --- a/phpBB/install/schemas/mysql_schema.sql +++ b/phpBB/install/schemas/mysql_schema.sql @@ -190,6 +190,9 @@ CREATE TABLE phpbb_forums ( forum_password varchar(32) DEFAULT '' NOT NULL, forum_style tinyint(4) UNSIGNED, forum_image varchar(50) DEFAULT '' NOT NULL, + forum_rules text DEFAULT '' NOT NULL, + forum_rules_link varchar(200) DEFAULT '' NOT NULL, + forum_rules_flags varchar(50) DEFAULT '' NOT NULL, forum_topics_per_page tinyint(4) UNSIGNED DEFAULT '0' NOT NULL, forum_type tinyint(4) DEFAULT '0' NOT NULL, forum_status tinyint(4) DEFAULT '0' NOT NULL, diff --git a/phpBB/install/schemas/schema_data.sql b/phpBB/install/schemas/schema_data.sql index 9a951e061f..4032fcec73 100644 --- a/phpBB/install/schemas/schema_data.sql +++ b/phpBB/install/schemas/schema_data.sql @@ -150,7 +150,6 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('auth_bbcode_pm', ' INSERT INTO phpbb_config (config_name, config_value) VALUES ('auth_smilies_pm', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('auth_download_pm', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig_pm', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('enable_karma_pm', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('auth_report_pm', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('auth_quote_pm', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('print_pm', '1'); |
