Thursday 09 July 2009 1:43:19 pm
Hi. We had similar problems few days ago. first, are your searchable objects under a section? then remember to update your module.ini.append.php to allow objectrelationbrowse to ge results from that section. if this is not the case, try to modify your module.php file. so, if you have now something like
$Module = array( 'name' => 'objectrelationbrowse' );
$ViewList = array();
$ViewList['list'] = array(
'script' => 'list.php',
'default_navigation_part' => 'ezsetupnavigationpart',
'params' => array ( 'Limit', 'AttributeID', 'Phrase' ) );
try to change it to
$Module = array( 'name' => 'objectrelationbrowse' );
$ViewList = array();
$ViewList['list'] = array(
'script' => 'list.php',
'default_navigation_part' => 'ezsetupnavigationpart',
'params' => array ( 'Limit', 'AttributeID', 'Phrase' ) ;
functions' => array( 'list' ) );
$FunctionList = array();
$FunctionList['list'] = array();
hope it helps.
|