Thursday 01 February 2007 8:30:34 am
Sorry I won't probably make sense explaining my problem:
I am trying to create a form with 6 html lists where I select several attributes to filter by. The form is sending 6 parameters to a custom search, where I want to display my objects , filtering them by the values of 6 attributes. All in all,
{def $combined2=fetch( 'content', 'list', hash( 'parent_node_id', 1539, 'attribute_filter', array( 'AND', $query_site, $query_sitegr, $query_subject ,$query_subjectgr, $query_countr, $query_countrgr)) )}
where the values of the queries look like
{def $query_subjectgr = array( 'ee_article_linear/groupe_sujet', '>', '0')}
My PROBLEM is: this DOESN'T work if I have <b>all the 6 criteria.</b> However, if I have <b>only 4</b> it works. Is there some limitation inside the fetch function or inside the attribute filter, that prevents the full query to work? Please help, I'm past behind my project deadline and this bug is keeping me stuck for a week now..
|