Comment Mambo Foundation August 2006 copyright (C) 2000 - 2007 Mambo Foundation Inc. http://www.opensource.org/licenses/gpl-license.php GNU/GPL v.2 core@mambo-foundation.org mambo-foundation.org 1.1 Adds a commenting feature to articles within selected sections comment.php DROP TABLE IF EXISTS `#__comment` CREATE TABLE IF NOT EXISTS `#__comment` ( `id` int(10) NOT NULL auto_increment, `articleid` int(10) NOT NULL default '0', `ip` varchar(15) NOT NULL default '', `name` varchar(30) NOT NULL default '', `comments` text NOT NULL, `startdate` datetime NOT NULL default '0000-00-00 00:00:00', `published` tinyint(1) NOT NULL default '0', PRIMARY KEY (`id`) ) TYPE=MyISAM; DELETE FROM `#__comment` DROP TABLE `#__comment` install.comment.php uninstall.comment.php Comment View Comments Edit Settings admin.comment.html.php admin.comment.php class.comment.php config.comment.php install.comment.php toolbar.comment.html.php toolbar.comment.php uninstall.comment.php