basically the link is wrong I think, from line 81 of openx_manager.module
$links['create_zone'] = array(
'title' => t('Create a new Zone'),
'href' => 'node/%node/link-zone-campaign',
'query' => array('opid' => $object->opid, 'nid' => $object->nid),
);
should be:
$links['create_zone'] = array(
'title' => t('Create a new Zone'),
'href' => 'node/add/openx-zone',
'query' => array('opid' => $object->opid, 'nid' => $object->nid),
);
Comments
Comment #1
fayola commentedComment #2
brmassa commentedfayola,
thanks for the report. this bug was reported before on http://drupal.org/node/351367. I will focus the communication there ok?
regards,
massa
Comment #3
fayola commentedno prob, I saw it after I posted this.