From d441f9ffcbd1a9ae5aa294456f64f9adc889ab65 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Mon, 27 Jan 2003 15:29:24 +0000 Subject: [PATCH] Minor additions and mods git-svn-id: file:///svn/phpbb/trunk@3364 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install/schemas/mysql_basic.sql | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/phpBB/install/schemas/mysql_basic.sql b/phpBB/install/schemas/mysql_basic.sql index 00eefe9fc9..b35ac9a1a9 100644 --- a/phpBB/install/schemas/mysql_basic.sql +++ b/phpBB/install/schemas/mysql_basic.sql @@ -158,9 +158,13 @@ INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_prune', 1); INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_auth', 1); INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_authmods', 1); INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_authadmins', 1); +INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_authusers', 1); +INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_authgroups', 1); INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_backup', 1); INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_restore', 1); INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_search', 1); +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); @@ -250,10 +254,6 @@ INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, post INSERT INTO phpbb_posts_text (post_id, post_subject, post_text) VALUES (1, NULL, 'This is an example post in your phpBB 2.2 installation. You may delete this post, this topic and even this forum if you like since everything seems to be working!'); -# -- Topic icons -INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height) VALUES (1, '', 0, 0); - - # -- Smilies INSERT INTO phpbb_smilies (code, smile_url, emoticon, smile_width, smile_height) VALUES ( ':D', 'icon_biggrin.gif', 'Very Happy', 15, 15); INSERT INTO phpbb_smilies (code, smile_url, emoticon, smile_width, smile_height) VALUES ( ':)', 'icon_smile.gif', 'Smile', 15, 15);