Closed (fixed)
Project:
Deadwood
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
18 Mar 2009 at 13:56 UTC
Updated:
10 Apr 2009 at 22:00 UTC
deadwood made this change:
- variable_set('comment_page', COMMENT_NODE_READ_WRITE);
+ variable_set('comment_page_' . $node->type, COMMENT_NODE_READ_WRITE);
this is incorrect, because comment_page was already a per node type setting in 5.x.
Comments
Comment #1
solotandem commentedFixed in tonight's dev release.
I am not aware of an easy way to collect all of the node types that might be referred to in code, so I added exceptions for article, page and story. The function deadwood_convert_comment_settings includes a note to add to the list.
If you have a suggestion on how to better do this, let me know.