mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-19 06:51:33 +02:00
- create forums by default
- hide prune options if not enabled - fixed module management enable/disable switch if in module itself - fixed some schema errors - adjusted $user->page array generation for developers calling scripts outside of phpBB root git-svn-id: file:///svn/phpbb/trunk@5995 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -1238,9 +1238,9 @@ CREATE TABLE phpbb_topics (
|
||||
topic_moved_id INTEGER DEFAULT 0 NOT NULL,
|
||||
topic_bumped INTEGER DEFAULT 0 NOT NULL,
|
||||
topic_bumper INTEGER DEFAULT 0 NOT NULL,
|
||||
poll_title BLOB SUB_TYPE TEXT,
|
||||
poll_start INTEGER DEFAULT 0 NOT NULL,
|
||||
poll_length INTEGER DEFAULT 0 NOT NULL,
|
||||
poll_title BLOB SUB_TYPE TEXT NULL,
|
||||
poll_start INTEGER DEFAULT 0 NULL,
|
||||
poll_length INTEGER DEFAULT 0 NULL,
|
||||
poll_max_options INTEGER DEFAULT 1 NOT NULL,
|
||||
poll_last_vote INTEGER DEFAULT 0 ,
|
||||
poll_vote_change INTEGER DEFAULT 0 NOT NULL
|
||||
@@ -1317,7 +1317,7 @@ CREATE TABLE phpbb_users (
|
||||
user_type INTEGER DEFAULT 0 NOT NULL,
|
||||
group_id INTEGER DEFAULT 3 NOT NULL,
|
||||
user_permissions BLOB SUB_TYPE TEXT,
|
||||
user_perm_from INTEGER DEFAULT 0 NOT NULL,
|
||||
user_perm_from INTEGER DEFAULT 0 NULL,
|
||||
user_ip VARCHAR(40) DEFAULT '' NOT NULL,
|
||||
user_regdate INTEGER DEFAULT 0 NOT NULL,
|
||||
username VARCHAR(252) DEFAULT '' NOT NULL,
|
||||
|
Reference in New Issue
Block a user