Don't break on searchword search

We didn't adjust the location name when using searchwords.
We now properly search within new locations name, instead of old no
longer existing column.

Relates: #10349
This commit is contained in:
Daniel Siepmann 2023-02-16 07:54:03 +01:00
parent a188dd280c
commit 0c9f9542fb
2 changed files with 4 additions and 1 deletions

View file

@ -145,7 +145,7 @@ class DateRepository extends Repository
'event.title',
'event.teaser',
'event.categories.title',
'event.name', // Location name
'event.location.name',
'event.organizer.name',
];

View file

@ -31,6 +31,9 @@ Fixes
* Properly link to first page within Pagination partial.
* Do not break while searching dates by search word.
Properly search within location name instead of no longer existing event name column.
Tasks
-----