Active
Project:
Nodeforum
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
19 Feb 2009 at 12:35 UTC
Updated:
12 Aug 2009 at 22:32 UTC
If the admin specifies more than one content type as an option for posting in the forums then both content types should show on the forum lists.
Around line 945 in nodeforum.module you find the Post new forum topic option, but it should also give the option for other enabled content types.
// Link to post new forums, or to login/register
if (user_access('create forum topics')) {
if ($tid) {
$new_topic_link = l(t('Post new forum topic.'), "node/add/forum", array('query' => "section=$tid"));
}
else {
$new_topic_link = l(t('Post new forum topic.'), "node/add/forum");
}
}
Comments
Comment #1
gravisrs commentedNodecomment supports - in opposition to regular forum module - only one content type 'forum'. I hope someone will ever put that functionality.. but as long as it requires to rewrite all sql's.. we can only dream about it..