[Koha-devel] [Bug 148] Library branches with apostrophes in name can't be edited

bugzilla-daemon at wilbur.katipo.co.nz bugzilla-daemon at wilbur.katipo.co.nz
Thu Dec 19 05:48:03 CET 2002


http://bugs.koha.org/cgi-bin/bugzilla/show_bug.cgi?id=148

paul.poulain at free.fr changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED



------- Additional Comments From paul.poulain at 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 
 &quot;daddy&quot;">

 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.




More information about the Koha-devel mailing list