aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorthe_systech <the_systech@users.sourceforge.net>2001-05-31 14:17:40 +0000
committerthe_systech <the_systech@users.sourceforge.net>2001-05-31 14:17:40 +0000
commit423e8adf26e1da84334812da2eff8f7edffa7541 (patch)
tree8f7c7842734602755822cebdfa65ff1baee44835
parent09f0b8836576fc792a5704ee2a2295ba94e6a4f6 (diff)
downloadforums-423e8adf26e1da84334812da2eff8f7edffa7541.tar
forums-423e8adf26e1da84334812da2eff8f7edffa7541.tar.gz
forums-423e8adf26e1da84334812da2eff8f7edffa7541.tar.bz2
forums-423e8adf26e1da84334812da2eff8f7edffa7541.tar.xz
forums-423e8adf26e1da84334812da2eff8f7edffa7541.zip
Fixed error in sql. INSER
git-svn-id: file:///svn/phpbb/trunk@385 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/db/mysql_basic.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/db/mysql_basic.sql b/phpBB/db/mysql_basic.sql
index dcfcab8e2e..2874e6b32c 100644
--- a/phpBB/db/mysql_basic.sql
+++ b/phpBB/db/mysql_basic.sql
@@ -31,7 +31,7 @@ INSERT INTO phpbb_user_group (group_id, user_id) VALUES (2, 2);
INSERT INTO phpbb_auth_forums (forum_id, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_votecreate, auth_vote) VALUES (1, 0, 0, 0, 0, 0, 0, 0, 0);
# -- User Access (admin is just that, an admin)
-INSER INTO phpbb_auth_access (group_id, forum_id, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_votecreate, auth_vote, auth_mod, auth_admin) VALUES (2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1);
+INSERT INTO phpbb_auth_access (group_id, forum_id, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_votecreate, auth_vote, auth_mod, auth_admin) VALUES (2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1);
# -- Demo Topic
INSERT INTO phpbb_topics VALUES(1,1,'Demo Topic', 1,NOW(), 0,0,0,0,1);