Closed (fixed)
Project:
Image Publishing
Version:
4.7.x-1.x-dev
Component:
Miscellaneous
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
27 Sep 2006 at 19:43 UTC
Updated:
17 Oct 2006 at 16:16 UTC
My default setting for image nodes is comments read/write enabled but they are disabled when using image_pub.
I tested with windows publishing and Gallery remote.
Comments
Comment #1
kitt commentedAround line 243 in the module, change the comment value line from:
$node->body = $description;
$node->comment = 0
$node->status = 1;
to this:
$node->body = $description;
// honor the default comment setting, defaulting to none
$node->comment = variable_get('comment_image', 0);
$node->status = 1;
Comment #2
jferjan commentedthx! its working ...tested with gallery remote.
Comment #3
(not verified) commented