mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-22 04:16:10 +01:00
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:
parent
a188dd280c
commit
0c9f9542fb
2 changed files with 4 additions and 1 deletions
|
@ -145,7 +145,7 @@ class DateRepository extends Repository
|
||||||
'event.title',
|
'event.title',
|
||||||
'event.teaser',
|
'event.teaser',
|
||||||
'event.categories.title',
|
'event.categories.title',
|
||||||
'event.name', // Location name
|
'event.location.name',
|
||||||
'event.organizer.name',
|
'event.organizer.name',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -31,6 +31,9 @@ Fixes
|
||||||
|
|
||||||
* Properly link to first page within Pagination partial.
|
* 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
|
Tasks
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue