Tuesday 24 February 2009 7:46:27 am
Hi. For my purposes i need that search results returns also nodes marked as privated or under sections who has no access allowed to anonymous users. For those results i will only show a link to it, and then, ezpublish should shows the user the login form. So, i'm using a query like the one presented at the documentation
{set $search = fetch( ezfind, search,
hash( query, 'eZ Systems',
limitation, hash( 'accessWord', 'yes' ) ) )
}
usign the query i need, i get an strange behaviour...Doing a {$search|attribute(show)} i get this
SearchResult array Array(0)
SearchCount integer 2
So, it seems that some records have been found (searchcount = 2) but searchresult array is empty... Is there something i'm doing wrong with my fetch? if i remove
limitation, hash('accessWord', 'yes')))
i don't get any results and SearchCount is also 0. BTW. I'm usign eZ Publish 4.0.1 for this project. Thank you.
|