Create a content type eg. xyz
Delete the content type
The table variables still contains a row where name = "webfm_attach_xyz"
I am no expert, but I think this row should be deleted when the content type is deleted.

Comments

xlsg’s picture

Issue tags: -hooks
robmilne’s picture

Status: Active » Closed (works as designed)

OK. Will add this to the next release...

/**
 * Implementation of hook_node_type().
 */
function webfm_node_type($op, $info) {
  switch ($op) {
    case 'delete':
      variable_del('webfm_attach_'. $info->type);
      break;
  }
}
robmilne’s picture

Status: Closed (works as designed) » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.