Installed it and like it very much
INSTALLED
I encountered one little error though.
Code:
Database error in vBulletin 3.5.4:
Invalid SQL:
ALTER TABLE `histtd_rss` ADD INDEX `name` ( `name` );
Also found the error in the XML.
At line 180 its says:
Code:
$db->query_write("ALTER TABLE `histtd_rss` ADD INDEX `name` ( `name` )");
Change this to:
Code:
$db->query_write("ALTER TABLE `" . TABLE_PREFIX . "histtd_rss` ADD INDEX `name` ( `name` )");
This should fix the error.