tags:

views:

31

answers:

1

Hi,

Im attempting to remove double quotes passed in a request parameter string. I know Smarty has a escape:'html' function however Id rather just remove all ".

Thanks.

+3  A: 

According to the manual, there's a replace modifier:

{$yourValue|replace:'"':''}
kroimon
Duh! Thank you!
Eddia