Quote:
Originally Posted by derfelix
talking about german.. just found a search bug..
difficult to explain..
the word Austria is "?sterreich" in german..
|
thanks - I found a similar bug within the search/sort order code when there is a space in the search string. I suspect it is the same problem, but will check.
edited - try editing local_links_search.php, round about line 1150, there's a sequence
Code:
$search['string'] = $vbulletin->GPC['search'];
$search['literal'] = $vbulletin->GPC['literal'] ? $vbulletin->GPC['literal'] : 1;
$search['keys'] = $vbulletin->GPC['keys'];
$search['desc'] = $vbulletin->GPC['desc'];
change the first line:
Code:
$search['string'] = urldecode($vbulletin->GPC['search']);
$search['literal'] = $vbulletin->GPC['literal'] ? $vbulletin->GPC['literal'] : 1;
$search['keys'] = $vbulletin->GPC['keys'];
$search['desc'] = $vbulletin->GPC['desc'];