I recently overrided a views exposed filter by converting some textfields to select.
The problem now is html special characters won't display on screen.
E.g
Code
<option>$1,000,000</option>
Expected Display
$1,000,000
Actual Display
1000000
The '$' and ',' is removed..
I have even tried htmlentities() but no luck there.
I even tried adding the html code directly
Anybody has any idea what I should do.
Here is some of the code: