Commit 7f116723083c22c1ebfa88fda80a0813011850cb
1 parent
dcaca6e8
KTS-2076
"Character encoding issue with document titles" Fixed this issue which lead to several other XSS issue fixes and i18n issue fixes. Committed By: Kevin Reviewed By: Conrad git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/STABLE/trunk@6741 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
3 changed files
with
5 additions
and
4 deletions
config/config.ini
templates/ktcore/action/rename.smarty
| 1 | -<h2>{i18n}Rename document{/i18n}: {$documentName}</h2> | |
| 1 | +<h2><img src="{if $config->get("ui/morphEnabled") == '1'}{$rootUrl}/skins/kts_{$config->get("ui/morphTo")}/title_bullet.png{else}{$rootUrl}/resources/graphics/title_bullet.png{/if}"/>{i18n}Rename Document{/i18n}:<br />{$documentName}</h2> | |
| 2 | + | |
| 2 | 3 | <p class="descriptiveText">{i18n}This page allows you to rename the file |
| 3 | 4 | name (not the document title) for a document.{/i18n}</p> |
| 4 | 5 | ... | ... |
templates/ktcore/folder/rename.smarty
| 1 | -<h2>{i18n}Rename Folder{/i18n}: {$folderName}</h2> | |
| 1 | +<h2><img src="{if $config->get("ui/morphEnabled") == '1'}{$rootUrl}/skins/kts_{$config->get("ui/morphTo")}/title_bullet.png{else}{$rootUrl}/resources/graphics/title_bullet.png{/if}"/>{i18n}Rename Folder{/i18n}:<br />{$folderName}</h2> | |
| 2 | 2 | |
| 3 | 3 | </h2><p class="descriptiveText">{i18n}This page allows you to rename a |
| 4 | 4 | folder.{/i18n}</p> | ... | ... |