upgraded core, fixed customs modules

This commit is contained in:
2022-02-15 11:22:01 +01:00
parent 7bc35bdc1f
commit 1f07e66fe6
82 changed files with 38856 additions and 1772 deletions

View File

@@ -1,7 +1,7 @@
name: Materio Serach API
type: module
description: 'Search Api Materio module'
core: 8.x
core_version_requirement: ^8.8 || ^9.2
package: 'Materio'
dependencies:
- search_api

View File

@@ -260,7 +260,7 @@ class Base extends ControllerBase {
// Get the typed string from the URL, if it exists.
$this->keys = $request->query->get('keys');
if($this->keys){
$this->keys = Unicode::strtolower($this->keys);
$this->keys = mb_strtolower($this->keys);
// $this->keys = Tags::explode($this->keys);
\Drupal::logger('materio_sapi')->notice($this->keys);
}