mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-07 01:06:48 +02:00
ok, handled some bugs... the most important being validate_username (the variable passed to validate_data([...]array('username', [...])) and updating group listings while doing relevant group actions. Oh, and PM icons are working now. :o
git-svn-id: file:///svn/phpbb/trunk@6894 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -495,7 +495,7 @@ CREATE TABLE phpbb_privmsgs_rules (
|
||||
rule_user_id INTEGER UNSIGNED NOT NULL DEFAULT '0',
|
||||
rule_group_id INTEGER UNSIGNED NOT NULL DEFAULT '0',
|
||||
rule_action INTEGER UNSIGNED NOT NULL DEFAULT '0',
|
||||
rule_folder_id int(4) NOT NULL DEFAULT '0'
|
||||
rule_folder_id INTEGER UNSIGNED NOT NULL DEFAULT '0'
|
||||
);
|
||||
|
||||
CREATE INDEX phpbb_privmsgs_rules_user_id ON phpbb_privmsgs_rules (user_id);
|
||||
@@ -511,7 +511,7 @@ CREATE TABLE phpbb_privmsgs_to (
|
||||
pm_replied INTEGER UNSIGNED NOT NULL DEFAULT '0',
|
||||
pm_marked INTEGER UNSIGNED NOT NULL DEFAULT '0',
|
||||
pm_forwarded INTEGER UNSIGNED NOT NULL DEFAULT '0',
|
||||
folder_id int(4) NOT NULL DEFAULT '0'
|
||||
folder_id INTEGER UNSIGNED NOT NULL DEFAULT '0'
|
||||
);
|
||||
|
||||
CREATE INDEX phpbb_privmsgs_to_msg_id ON phpbb_privmsgs_to (msg_id);
|
||||
|
Reference in New Issue
Block a user