diff options
Diffstat (limited to 'app/Template/user/sessions.php')
-rw-r--r-- | app/Template/user/sessions.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Template/user/sessions.php b/app/Template/user/sessions.php index 8db02430..d7fe895d 100644 --- a/app/Template/user/sessions.php +++ b/app/Template/user/sessions.php @@ -17,8 +17,8 @@ <tr> <td><?= $this->dt->datetime($session['date_creation']) ?></td> <td><?= $this->dt->datetime($session['expiration']) ?></td> - <td><?= $this->e($session['ip']) ?></td> - <td><?= $this->e($session['user_agent']) ?></td> + <td><?= $this->text->e($session['ip']) ?></td> + <td><?= $this->text->e($session['user_agent']) ?></td> <td><?= $this->url->link(t('Remove'), 'User', 'removeSession', array('user_id' => $user['id'], 'id' => $session['id']), true) ?></td> </tr> <?php endforeach ?> |