- Issue created by @olivier.bouwman
- 2d34f410 committed on 2.0.x
Issue #3517000 by olivier.bouwman: Compatibility with search_api_solr:4....
- 2d34f410 committed on 2.0.x
The hooks this module relies on are deprecated:
* hook_search_api_solr_query_alter is deprecated in search_api_solr:4.2.0 and is removed from search_api_solr:4.3.0. Handle the PreQueryEvent instead.
* hook_search_api_solr_documents_alter is deprecated in search_api_solr:4.2.0 and is removed from search_api_solr:4.3.0. Handle the PostCreateIndexDocumentsEvent instead.
Here is a simple patch that solves this by adding the events and having them reference the original hooks. I took this approach so that existing patches can still apply.
Active
2.0
Code
Issue #3517000 by olivier.bouwman: Compatibility with search_api_solr:4....