Hi, I recently moved to PHP 5.3.6 and Search API is giving me Strict warnings. Such as:

Strict warning: Only variables should be passed by reference in theme_search_api_page_results() 

In search_api_page.pages.inc, change:

$output .= render(entity_view($index->entity_type, $entities, $variables['view_mode']));

To:

$render = entity_view($index->entity_type, $entities, $variables['view_mode']);
$output .= render($render);

Not sure if this is the correct approach to solve.

Comments

drunken monkey’s picture

Status: Active » Fixed

Ah, you're right.
Committed your fix, thanks for spotting this!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.