As in the title, the release download table does not render, despite whatever combination of relationships, fields, and node types. The bug is in the views handler for the "Download table" field (project_release_handler_field_download_table.inc), where:

167    if (empty($node->releases)) {
168      return;
169    }

The code above always returns, because the project release data structure has changed and the "Initial" Views2 port never caught up. As seen in specifically project_release.module, the check should be on $node->project_release['releases'].

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

zhangtaihao’s picture

Assigned: zhangtaihao » Unassigned
Status: Patch (to be ported) » Needs review

Status: Needs review » Needs work

The last submitted patch, download_table_views_field.patch, failed testing.

zhangtaihao’s picture

FileSize
910 bytes
zhangtaihao’s picture

Status: Needs work » Needs review
patrickd’s picture

Status: Needs review » Fixed

seems to me like this was already committed meanwhile..

dww’s picture

Status: Fixed » Needs review

Nope. Look at the code in the 6.x-1.x branch -- still broken. It's almost 2am here, so I'm going to sleep, but I'll take a look tomorrow to see if I can reproduce + test this. Sorry for the delays -- issues always seem to fall through the cracks.

apaderno’s picture

Issue summary: View changes
Status: Needs review » Closed (outdated)

I am closing this issue, as Drupal 6 is no longer supported.