Thursday 17 August 2006 1:40:47 pm
Using eZ 3.8 I'm trying to do a relatively simple fetch on a custom content class I created. The class identifier is "advocacyonline". Here is the fetch function which is failing:
{def $mynodes=fetch('content', 'tree',
hash('parent_node_id', 69,
'class_filter_type', 'include',
'class_filter_array', array('advocacyonline')
))}
I get a notice on that says "Class filter returned false" If I use the number to filter the class instead everything works fine. The following code works:
{def $mynodes=fetch('content', 'tree',
hash('parent_node_id', 69,
'class_filter_type', 'include',
'class_filter_array', array('16')
))}
Any thoughts on what is going wrong?
working at www.wardnet.com
blogging at www.jamesward.ca
|