1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

- extended session_page and user_lastpage to hold a maximum of 200 chars (instead of 100) - session_page gets truncated to 200 chars

- streamlined the process of generating text with bbcode/smilies/urls (forum rules, forum descriptions, group descriptions at the moment)
- a bunch of schema changes for the bbcode-enabled text and the session page change (sorry for this)
- if decode_message is used there is no need to include functions_posting.php anymore (should fix the search.php bug too)


git-svn-id: file:///svn/phpbb/trunk@5709 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2006-03-25 12:07:13 +00:00
parent 529aabd46d
commit 5de37a5c0a
28 changed files with 428 additions and 226 deletions

View File

@@ -458,15 +458,16 @@ CREATE TABLE phpbb_forums (
forum_parents clob,
forum_name varchar2(150),
forum_desc clob,
forum_desc_bitfield number(11) DEFAULT '0' NOT NULL,
forum_desc_uid varchar2(5) DEFAULT '',
forum_link varchar2(200) DEFAULT '',
forum_password varchar2(32) DEFAULT '',
forum_style number(4),
forum_image varchar2(50) DEFAULT '',
forum_rules clob DEFAULT '',
forum_rules_link varchar2(200) DEFAULT '',
forum_rules_flags number(4) DEFAULT '0' NOT NULL,
forum_rules_bbcode_bitfield number(11) DEFAULT '0' NOT NULL,
forum_rules_bbcode_uid varchar2(5) DEFAULT '',
forum_rules_bitfield number(11) DEFAULT '0' NOT NULL,
forum_rules_uid varchar2(5) DEFAULT '',
forum_topics_per_page number(4) DEFAULT '0' NOT NULL,
forum_type number(4) DEFAULT '0' NOT NULL,
forum_status number(4) DEFAULT '0' NOT NULL,
@@ -556,6 +557,9 @@ CREATE TABLE phpbb_groups (
group_id number(8) NOT NULL,
group_type number(4) DEFAULT '1' NOT NULL,
group_name varchar2(40) DEFAULT '',
group_desc clob,
group_desc_bitfield number(11) DEFAULT '0' NOT NULL,
group_desc_uid varchar2(5) DEFAULT '',
group_display number(1) DEFAULT '0' NOT NULL,
group_avatar varchar2(100) DEFAULT '',
group_avatar_type number(4) DEFAULT '0' NOT NULL,
@@ -567,7 +571,6 @@ CREATE TABLE phpbb_groups (
group_receive_pm number(1) DEFAULT '0' NOT NULL,
group_message_limit number(8) DEFAULT '0' NOT NULL,
group_chgpass number(6) DEFAULT '0' NOT NULL,
group_description varchar2(255) DEFAULT '',
group_legend number(1) DEFAULT '1' NOT NULL,
CONSTRAINT pk_phpbb_groups PRIMARY KEY (group_id)
)
@@ -1215,7 +1218,7 @@ CREATE TABLE phpbb_sessions (
session_time number(11) DEFAULT '0' NOT NULL,
session_ip varchar2(40) DEFAULT '0',
session_browser varchar2(150) DEFAULT '',
session_page varchar2(100) DEFAULT '',
session_page varchar2(200) DEFAULT '',
session_viewonline number(1) DEFAULT '1' NOT NULL,
session_admin number(1) DEFAULT '0' NOT NULL,
CONSTRAINT pk_phpbb_sessions PRIMARY KEY (session_id)
@@ -1662,7 +1665,7 @@ CREATE TABLE phpbb_users (
user_lastvisit number(11) DEFAULT '0' NOT NULL,
user_lastmark number(11) DEFAULT '0' NOT NULL,
user_lastpost_time number(11) DEFAULT '0' NOT NULL,
user_lastpage varchar2(100) DEFAULT '',
user_lastpage varchar2(200) DEFAULT '',
user_last_confirm_key varchar2(10) DEFAULT '',
user_warnings number(4) DEFAULT '0' NOT NULL,
user_last_warning number(11) DEFAULT '0' NOT NULL,