Commit 82932b4f67cd635b6602b14162c075ed1dbc1fce

Authored by kevin_fourie
1 parent cca020c9

Merged in from STABLE trunk...

KTC-476
"Misaligned left alignment when listing all users on the Users page in the Admin section."
Fixed. Removed the centered class on the column.

Committed by: Megan Watson
Reviewed by: Conrad Vermeulen


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/STABLE/branches/3.5.3-Release-Branch@9073 c91229c3-7414-0410-bfa2-8a42b809f60b
templates/ktcore/principals/useradmin.smarty
... ... @@ -94,7 +94,7 @@ very slow if you have many users).{/i18n}</p>
94 94 <th>{i18n}Username{/i18n}</th>
95 95 <th>{i18n}Edit{/i18n}</th>
96 96 <th>{i18n}Enabled{/i18n}</th>
97   -
  97 +
98 98 <th>{i18n}Group Memberships{/i18n}</th>
99 99 <th>{i18n}Current Groups{/i18n}</th>
100 100 </tr>
... ... @@ -108,25 +108,25 @@ very slow if you have many users).{/i18n}&lt;/p&gt;
108 108 {if ($oUser->getId() != ADMIN_USER_ID)}<input type="checkbox" name="edit_user[{$oUser->getId()}]" value="1"/>
109 109 {else}&mdash;{/if}
110 110 </td>
111   - <td class="centered">
  111 + <td>
112 112 {$oUser->getName()}</td>
113 113 <td>{$oUser->getUsername()}</td>
114 114 <td><a href="{addQS}action=editUser&user_id={$oUser->getId()}&old_search={$old_search}{/addQS}" class="ktAction ktEdit">{i18n}Edit{/i18n}</a></td>
115 115 <td class="centered">
116 116 {if ($oUser->getDisabled() == 1)}
117   - <span class="ktAction ktDenied" title="{i18n}Disabled{/i18n}">{i18n}Disabled{/i18n}</a>
  117 + <span class="ktAction ktDenied" title="{i18n}Disabled{/i18n}">{i18n}Disabled{/i18n}</a>
118 118 {else}
119 119 <span class="ktAction ktAllowed" title="{i18n}Enabled{/i18n}">{i18n}Enabled{/i18n}</a>
120 120 {/if}
121 121 </td>
122   -
123   -
124   -
125   -
126   - <td><a href="{addQS}action=editgroups&user_id={$oUser->getId()}&old_search={$old_search}{/addQS}">{i18n}Manage Groups{/i18n}</a></td>
  122 +
  123 +
  124 +
  125 +
  126 + <td><a href="{addQS}action=editgroups&user_id={$oUser->getId()}&old_search={$old_search}{/addQS}">{i18n}Manage Groups{/i18n}</a></td>
127 127 <td class="title"><span class="descriptiveText">{$context->getGroupStringForUser($oUser)}</span></td>
128 128 </tr>
129   - {/if}
  129 + {/if}
130 130 {/foreach}
131 131  
132 132 </tbody>
... ...