aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Atkinson <thefinn@users.sourceforge.net>2002-01-02 07:19:23 +0000
committerJames Atkinson <thefinn@users.sourceforge.net>2002-01-02 07:19:23 +0000
commitc1bdb408390104f6c332037b980af4f31dc6bb2b (patch)
tree302e7619c96eaf8c598f4fe19f7e3f7072a53852
parentf9589e5889e21986e40e94ff011f1c2fa7cda6f6 (diff)
downloadforums-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.php2
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);
}
}
}