Search by 2 Dublin Core fields

Hi,

I want to search on specific DC fields in the advanced search (only Creator and Interviewer).

These 2 solutions doesn't work :


get_table_options('Element', null,
array( 'record_types' => array('Item', 'All'),
'element_name' => 'Creator')
'element_name' => 'Interviewer')
'sort' => 'alphaBySet')
)


get_table_options('Element', null,
array( 'record_types' => array('Item', 'All'),
'element_name' => array('Creator', 'Interviewer'),
'sort' => 'alphaBySet')
)

Any idea ?

Thanks !

Franck.

You might need to use get_table_options separately for the two elements, then merge the resulting arrays.