Thanks for a useful module!

As the title states, call-time pass-by-reference is deprecated in PHP:

On line 104 in the file fs_context.module, first paramter incorrectly has an '&' - remove that and all should be fine:

$new = taxonomy_facets_faceted_search_collect(&$filters, "text", $search, "blah", $text);

Should be:

$new = taxonomy_facets_faceted_search_collect($filters, "text", $search, "blah", $text);

CommentFileSizeAuthor
#2 fs_context-944714-php54_support-2.patch1.04 KBmrP

Comments

mrP’s picture

Issue summary: View changes

Thanks for posting!

mrP’s picture

Status: Active » Reviewed & tested by the community
StatusFileSize
new1.04 KB

I doubt this will ever get committed, but here is the patch.

Marking RTBC.