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);
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | fs_context-944714-php54_support-2.patch | 1.04 KB | mrP |
Comments
Comment #1
mrP commentedThanks for posting!
Comment #2
mrP commentedI doubt this will ever get committed, but here is the patch.
Marking RTBC.