Bug #1676
Group search in 1.8
| Status: | Closed | Start date: | 05/03/2010 | |
|---|---|---|---|---|
| Priority: | Normal | Due date: | ||
| Assignee: | - | % Done: | 100% |
|
| Category: | - | |||
| Target version: | - |
Description
Group search does not work with search strings containing special characters like german "umlauts" i.e. ä, ö, ü.
So groups with such characters in their names will no be found.
History
Updated by krileon about 2 years ago
- Status changed from New to Closed
- % Done changed from 0 to 100
Due to strtolower being applied to the search string, which does not support such characters. This has been removed for next release. Quick fix as follows.
IN: components/com_groupjive/gj/core/search.php
ON: Line 28
REMOVE:$searchstring = escapeString( strtolower( $searchstring ) );