Closed (fixed)
Project:
Node Comments
Version:
6.x-1.x-dev
Component:
Documentation
Priority:
Minor
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
16 Jan 2009 at 22:27 UTC
Updated:
9 May 2010 at 19:22 UTC
Just an FYI for anyone using this module. In order to get simpletest to run with this module, I had to remove comment from default_profile_modules() in profiles/default/default.profile.
Before:
function default_profile_modules() {
return array('color', 'comment', 'help', 'menu', 'taxonomy', 'dblog');
}
After:
function default_profile_modules() {
return array('color', 'help', 'menu', 'taxonomy', 'dblog');
}
Maybe this should go in the README. Maybe not. Just hope that someone will find it helpful.
Comments
Comment #1
crea commented