From 89311f96df3cc11424a3827c23ea3cabb1e1d917 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Mon, 1 Jun 2015 14:06:37 +0200 Subject: [PATCH] Show a minus for a user's state if the state cannot be determined refs #8826 --- application/views/scripts/user/show.phtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/views/scripts/user/show.phtml b/application/views/scripts/user/show.phtml index 96af9224c..aadc00614 100644 --- a/application/views/scripts/user/show.phtml +++ b/application/views/scripts/user/show.phtml @@ -28,7 +28,7 @@ if ($this->hasPermission('config/application/users/edit') && $backend instanceof

escape($user->user_name); ?>

-

translate('State'); ?>: is_active ? $this->translate('Active') : $this->translate('Inactive'); ?>

+

translate('State'); ?>: is_active === null ? '-' : ($user->is_active ? $this->translate('Active') : $this->translate('Inactive')); ?>

translate('Created at'); ?>: created_at === null ? '-' : $this->formatDateTime($user->created_at); ?>

translate('Last modified'); ?>: last_modified === null ? '-' : $this->formatDateTime($user->last_modified); ?>