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

kitt’s picture

Around 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;

jferjan’s picture

Status: Active » Fixed

thx! its working ...tested with gallery remote.

Anonymous’s picture

Status: Fixed » Closed (fixed)