diff options
author | M.Gergo | 2018-07-23 11:58:31 +0200 |
---|---|---|
committer | M.Gergo | 2018-07-23 11:58:31 +0200 |
commit | 2f5969b827ff17ee05e05f46025367017fdfcf44 (patch) | |
tree | cb9e56d5212cd12874bb1ae00812bf2e3bcbbd34 /mayor-orig/www/skin/classic/module-session/html | |
parent | 0b26d2d6860e7fe428930b97dc953895aa1ca30c (diff) | |
download | mayor-2f5969b827ff17ee05e05f46025367017fdfcf44.tar.gz mayor-2f5969b827ff17ee05e05f46025367017fdfcf44.zip |
Rev: 4340
Diffstat (limited to 'mayor-orig/www/skin/classic/module-session/html')
-rw-r--r-- | mayor-orig/www/skin/classic/module-session/html/sessionAdmin.phtml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mayor-orig/www/skin/classic/module-session/html/sessionAdmin.phtml b/mayor-orig/www/skin/classic/module-session/html/sessionAdmin.phtml index bfb1cc1e..67c2af13 100644 --- a/mayor-orig/www/skin/classic/module-session/html/sessionAdmin.phtml +++ b/mayor-orig/www/skin/classic/module-session/html/sessionAdmin.phtml @@ -2,7 +2,7 @@ function putSessionList($ADAT) { - echo '<table class="lista">'."\n"; + echo '<table class="lista" >'."\n"; echo '<thead>'."\n"; echo '<tr>'; @@ -30,13 +30,14 @@ foreach ($ADAT['session'] as $sAdat) { echo '<tr>'; echo '<th>'; -//var_dump($sAdat); + if ($sAdat['sessionID']!=_SESSIONID) { formBegin(); echo '<input type="hidden" name="action" value="deleteSession" />'."\n"; echo '<input type="hidden" name="delSessionID" value="'.$sAdat['sessionID'].'" />'."\n"; echo '<input type="hidden" name="delPolicy" value="'.$sAdat['policy'].'" />'."\n"; echo '<input type="submit" class="confirm" title="'._BIZTOS_TOROL.'" name="del" value="'._DELETE.'" />'."\n"; formEnd(); + } echo '</th>'; echo '<th>'.$sAdat['userAccount'].'</th>'; echo '<td>'.$sAdat['userCn'].'</td>'; |