Needs work
Project:
Project
Version:
7.x-2.x-dev
Component:
Releases
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
24 Sep 2012 at 17:26 UTC
Updated:
3 Apr 2014 at 01:49 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
thermador commentedNo ideas eh?
I am using the latest -dev of:
Project
Project Issue
Entity
I am using this on a production site by the way. There are features of Drupal 7 that I need for the site that Drupal 6 just doesn't offer. Project and Project Issue 7.x are functional enough for production, in my opinion, but I have been waiting forever for the releases part to get ported to D7.
Is this a bug everyone else is having, or is it just me? That is, is it even possible to use Project Releases right now, or is that just a faulty line of reasoning?
Or do I just need to manually create the field "field_project_has_releases" ?
I wish I had the skills to debug this myself, sorry. :-(
Comment #2
adamtong commentedI also have this issue. I got this error in fresh install.
Thanks.
Comment #3
sjk07 commentedThis issue is also affecting my site.
Comment #4
drummYou should not need to manually create field_project_has_releases, but it is a good way to recover. The field definition can be found in
release/includes/project_release_node_type.inc. Note this is a field on project nodes, not releases.The problem is that the field definition has
'bundle' => 'project'hard-coded. It should match the pattern thatfield_issue_versionuses inproject_release_node_type_update(). Except, iterate overproject_project_node_types()instead ofproject_issue_issue_node_types().Comment #5
Robytfc commentedFirst patch submission so apologise if anything is wrong but this should fix the problem.
Comment #8
Robytfc commentedGoing to try again.
Comment #9
drummLooks like good progress. A couple things to improve:
project_release_node_type_update(), so it can act on both release node types and project node types being updated at any time.