koha-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: bugzilla-daemon
Subject: [Koha-devel] [Bug 148] Library branches with apostrophes in name can't be edited
Date: Thu Dec 19 05:48:03 2002

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

address@hidden changed:

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



------- Additional Comments From address@hidden  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.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]