diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-03-04 14:46:40 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-03-04 14:46:40 +0000 |
commit | 5c0e4ca329de13a216054497619d9e5771344166 (patch) | |
tree | 66e7fad29952fb4d3a72c003d6d60e4f53f37f19 /phpBB/install/schemas/mysql_basic.sql | |
parent | 87cce70d108c619026d04be1daad01071f325327 (diff) | |
download | forums-5c0e4ca329de13a216054497619d9e5771344166.tar forums-5c0e4ca329de13a216054497619d9e5771344166.tar.gz forums-5c0e4ca329de13a216054497619d9e5771344166.tar.bz2 forums-5c0e4ca329de13a216054497619d9e5771344166.tar.xz forums-5c0e4ca329de13a216054497619d9e5771344166.zip |
Few changes to user level permissions
git-svn-id: file:///svn/phpbb/trunk@3588 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/schemas/mysql_basic.sql')
-rw-r--r-- | phpBB/install/schemas/mysql_basic.sql | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/phpBB/install/schemas/mysql_basic.sql b/phpBB/install/schemas/mysql_basic.sql index 3c730567f1..92fe433e8a 100644 --- a/phpBB/install/schemas/mysql_basic.sql +++ b/phpBB/install/schemas/mysql_basic.sql @@ -168,12 +168,16 @@ INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_events', 1); INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_cron', 1); INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('u_', 1); -INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('u_email', 1); -INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('u_pm', 1); -INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('u_avatar', 1); +INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('u_sendemail', 1); +INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('u_readpm', 1); +INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('u_sendpm', 1); INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('u_viewonline', 1); -INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('u_owncolor', 1); -INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('u_grpcolor', 1); +INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('u_viewprofile', 1); +INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('u_chgavatar', 1); +INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('u_chgcolor', 1); +INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('u_chgemail', 1); +INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('u_chgname', 1); +INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('u_chgpasswd', 1); # -- phpbb_styles |