Keep search field & allow search by nickname

This commit is contained in:
Beu
2022-04-03 11:57:36 +02:00
parent 8a46edfde6
commit 4948d5219c
3 changed files with 6 additions and 6 deletions

View File

@ -1077,7 +1077,7 @@ class MapManager implements CallbackListener, CommunicationListener, UsageInform
}
break;
case self::SEARCH_BY_AUTHOR:
if (strpos(strtolower($map->authorLogin), $searchString) !== false) {
if (strpos(strtolower($map->authorLogin), $searchString) !== false || strpos(strtolower($map->authorNick), $searchString) !== false) {
array_push($result, $map);
}
}