Closed (fixed)
Project:
Content Construction Kit (CCK)
Version:
5.x-1.7
Component:
Panels Integration
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
4 Jul 2008 at 18:12 UTC
Updated:
14 Jul 2012 at 19:30 UTC
I just tested to use Panels with some custom fields and formatters created with cck-hooks (cck gmapfield and cck nodemenu). But both didn't work propperly, because in both cases wrong or no formatter was called, due to:
$node_field[$delta]['view'] = content_format($field, $item, $conf['formatter'], $node);
in content_panels.inc on line 126
$conf['formatter'] does not exists, instead use $formatter:
$node_field[$delta]['view'] = content_format($field, $item, $formatter, $node);
in content_panels.inc on line 126
This little patch is attached:
| Comment | File | Size | Author |
|---|---|---|---|
| content_panels.inc_.patch | 709 bytes | derhasi |
Comments
Comment #1
rjleigh commentedThanks! that fixed this:
http://drupal.org/node/269850
Comment #2
yched commentedI think this got fixed meanwhile.
Comment #3
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.