- Code: Select all
http://www.phpbb.com/community/search.php?st=0&sk=t&sd=d&sr=topics&author=eviL%26lt%3B3&start=25
The problem is, that my username contains html, wich - with htmlspecialchars applied to the username - results in < being converted to %26lt%.
Possible solution:
In search.php, find:
- Code: Select all
$u_search .= ($author) ? '&author=' . urlencode($author) : '';
Replace:
- Code: Select all
$u_search .= ($author) ? '&author=' . urlencode(htmlspecialchars_decode($author)) : '';