Commit 574855ac1b66496fb4f52f25f1821bd26dc98a90
1 parent
9618f862
KTS-2695
"The character Ñ is replaced by ? when used in a document filename in the DMS" Fixed. Changed smarty wordwrap to make a new line on the end of a word to stop question marks from displaying. Committed By: Jonathan Byrne Reviewed By: Conrad Vermeulen git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@8193 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
1 deletions
templates/kt3/fieldsets/generic.smarty
| ... | ... | @@ -8,7 +8,7 @@ |
| 8 | 8 | <table class="metadatatable" cellspacing="0" cellpadding="5"> |
| 9 | 9 | <tr class="even first"> |
| 10 | 10 | <th>{i18n}Document Filename{/i18n}</th> |
| 11 | - <td>{$filename|wordwrap:40:"\n":true|sanitize} ({$context->_sizeHelper($document->getSize())})</td> | |
| 11 | + <td>{$filename|wordwrap:40:"\n":false|sanitize} ({$context->_sizeHelper($document->getSize())})</td> | |
| 12 | 12 | </tr> |
| 13 | 13 | |
| 14 | 14 | <tr class="odd"> | ... | ... |