Marko Žmak
|
Monday 12 July 2004 3:53:33 pm
Since I've modified the classes Folder and Article, the fetch functon doesn't fetch anything when I user the cass filter ont these classes. I use it like this:
'class_filter_type', 'include',
'class_filter_array', array('folder')
And the anonymous user has unlimited acces for content reading. Is this a bug?
--
Nothing is impossible. Not if you can imagine it!
Hubert Farnsworth
|
Marko Žmak
|
Tuesday 13 July 2004 5:38:34 am
Here it is for article:
{let vijesti_list=fetch(content, list, hash(
'parent_node_id', $folder_node.node_id,
'class_filter_type', 'include',
'class_filter_array', array('article'),
'sort_by', array('published', false()),
))}
It doesn't fetch anything, count of $vijesti_list after this is zero. Without these lines:
'class_filter_type', 'include',
'class_filter_array', array('article'),
it works O.K. And the identifier of Article class is article.
--
Nothing is impossible. Not if you can imagine it!
Hubert Farnsworth
|