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.
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