Bug #1695 ยป 1695.patch
| administrator/components/com_comprofiler/admin.comprofiler.html.php | ||
|---|---|---|
|
<?php
|
||
|
foreach ($filterparts AS $filterpart) {
|
||
|
if($filterpart['value']!='') {
|
||
|
echo "<option value=\"".$filterpart['value']."\">".stripslashes(utf8RawUrlDecode($filterpart['title']))."\n"; //BB todo sortout htmlspecialchars...not compatible with utf8rawdecode
|
||
|
echo "<option value=\"".$filterpart['value']."\">".stripslashes(utf8_encode(html_entity_decode(utf8RawUrlDecode($filterpart['title']))))."\n"; //BB todo sortout htmlspecialchars...not compatible with utf8rawdecode
|
||
|
}
|
||
|
}
|
||
|
|
||