From: defacer Date: Tue, 1 Jun 2004 07:45:18 +0000 (+0000) Subject: Fix for dumb error (extra comma) X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=c9114c35e58da85b359079b342669c5c59ae4518;p=moodle.git Fix for dumb error (extra comma) --- diff --git a/mod/forum/db/mysql.php b/mod/forum/db/mysql.php index 54789f36b0..896d3e234a 100644 --- a/mod/forum/db/mysql.php +++ b/mod/forum/db/mysql.php @@ -123,7 +123,7 @@ function forum_upgrade($oldversion) { `postid` int(11) unsigned default 0 NOT NULL, PRIMARY KEY (`id`), KEY `user` (userid), - KEY `post` (postid), + KEY `post` (postid) ) TYPE=MyISAM COMMENT='For keeping track of posts that will be mailed in digest form';"); }