Problem with the v1.1 xml..
Getting this error
Code:
Database error in vBulletin 3.5.0 Release Candidate 1:
Invalid SQL:
CREATE TABLE `vb3_shout` (
`sid` int(15) NOT NULL auto_increment,
`s_by` int(15) NOT NULL default '0',
`s_time` int(15) NOT NULL default '0',
`s_shout` text NOT NULL,
PRIMARY KEY (`sid`)
) ENGINE=MyISAM;;
MySQL Error : You have an error in your SQL syntax near 'ENGINE=MyISAM' at line 7
Error Number : 1064
Also, when you edit the product, the install code looks like this
Code:
$Query = "CREATE TABLE `".TABLE_PREFIX."shout` (
`sid` int(15) NOT NULL auto_increment,
`s_by` int(15) NOT NULL default '0',
`s_time` int(15) NOT NULL default '0',
`s_shout` text NOT NULL,
PRIMARY KEY (`sid`)
) ENGINE=MyISAM;";
$vbulletin->db->query($Query);