diff options
author | James Atkinson <thefinn@users.sourceforge.net> | 2002-01-02 07:19:23 +0000 |
---|---|---|
committer | James Atkinson <thefinn@users.sourceforge.net> | 2002-01-02 07:19:23 +0000 |
commit | c1bdb408390104f6c332037b980af4f31dc6bb2b (patch) | |
tree | 302e7619c96eaf8c598f4fe19f7e3f7072a53852 | |
parent | f9589e5889e21986e40e94ff011f1c2fa7cda6f6 (diff) | |
download | forums-c1bdb408390104f6c332037b980af4f31dc6bb2b.tar forums-c1bdb408390104f6c332037b980af4f31dc6bb2b.tar.gz forums-c1bdb408390104f6c332037b980af4f31dc6bb2b.tar.bz2 forums-c1bdb408390104f6c332037b980af4f31dc6bb2b.tar.xz forums-c1bdb408390104f6c332037b980af4f31dc6bb2b.zip |
Fixed parse error in install.php
git-svn-id: file:///svn/phpbb/trunk@1772 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install.php b/phpBB/install.php index 57df85c44a..eb1af053ff 100644 --- a/phpBB/install.php +++ b/phpBB/install.php @@ -755,7 +755,7 @@ else { $sql = "ALTER TABLE " . $table_prefix . "sessions TYPE=HEAP"; - $db->sql_query($sql)) + $db->sql_query($sql); } } } |