Commit bc10b2b56c22883c78d15dfd92f8a6300edbaedf
1 parent
c6d0cc23
KTS-1516
"International characters appear incorrect in lookup-fields" Additional Fix. selection field was also effected. Reviewed by: Jalaloedien git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@6164 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
2 additions
and
2 deletions
templates/ktcore/forms/widgets/selection.smarty
| ... | ... | @@ -6,11 +6,11 @@ |
| 6 | 6 | {if $options.multi}multiple="true"{/if} |
| 7 | 7 | > |
| 8 | 8 | {if $options.initial_string} |
| 9 | - <option value="">{$options.initial_string|htmlentities}</option> | |
| 9 | + <option value="">{$options.initial_string}</option> | |
| 10 | 10 | {/if} |
| 11 | 11 | {foreach item=lookup key=lookup_key from=$vocab} |
| 12 | 12 | |
| 13 | - <option value="{$lookup_key|htmlentities}" {if ($value == $lookup_key)}selected="selected"{/if}>{$lookup|htmlentities}</option> | |
| 13 | + <option value="{$lookup_key}" {if ($value == $lookup_key)}selected="selected"{/if}>{$lookup}</option> | |
| 14 | 14 | {/foreach} |
| 15 | 15 | </select> |
| 16 | 16 | {/if} | ... | ... |