http://bugs.koha.org/cgi-bin/bugzilla/show_bug.cgi?id=148 paul.poulain@free.fr changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From paul.poulain@free.fr 2002-12-20 02:46 ------- the easiest way is to just do an $test =~ /"/"/g; $template->param(test => $test); so the output would be <input type="text" name="test" value="here is "daddy""> another way is to use HTML::Templates escaping capabilities like this: <input type="text" name="test" value="<tmpl_var name="test" escape="HTML">"> which does roughly the same but with more translations. This should be the prefered solution, if you don't need extended capabilities. ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact.