Details
Description
For the event API: the parameter 'returnFirst' is ignored.
This is caused by a typo in api/v2/Event.php, civicrm_event_get, line 119/120:
if ( count( $event ) != 1 &&
! $event['returnFirst'] ) {
This should read:
if ( count( $event ) != 1 &&
! $params['returnFirst'] ) {