Drupal 7 uses Views 3 so the function nodeownership_views_api() requires a minor change
/**
* Implements hook_views_api().
*/
function nodeownership_views_api() {
return array(
'api' => 3,
'path' => drupal_get_path('module', 'nodeownership') . '/includes',
);
}
Patch to follow...
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | node-ownership-views-api-1897404-1.patch | 331 bytes | robcarr |
Comments
Comment #1
robcarrPatch
Comment #2
grasmash commented