Commit 3f6b0a2d1fa4980dbc9fe8ba1abbb32bca52c9f9

Authored by jonathan_byrne
1 parent 22b9bab2

KTS-2917

"If the fieldset names are too long there is no way to get to the edit button on the main Fieldset page"

Fixed. Fieldset name is now truncated to a better size.

Committed By: Jonathan Byrne
Reviewed By: Jalaloedien Abrahams

git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@8087 c91229c3-7414-0410-bfa2-8a42b809f60b
templates/ktcore/metadata/admin/list.smarty
... ... @@ -25,7 +25,7 @@
25 25 {foreach from=$fieldsets item=oFieldset}
26 26 <tr>
27 27 <td>
28   - { $oFieldset->getName() }
  28 + { $oFieldset->getName()|truncate:40:"..." }
29 29 </a>
30 30 </td>
31 31 <td class="centered">
... ...