Skip to content
Snippets Groups Projects
Commit f2d4652d authored by Peter Rotich's avatar Peter Rotich
Browse files

Fix logic bug

parent bc7b835d
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@ if (($users=$ticket->getCollaborators())) {?>
<?php
foreach($users as $user) {
echo sprintf('<tr><td %s><i class="icon-%s"></i> %s <em>&lt;%s&gt;</em></td></tr>',
($user->isActive()? 'class="faded"' : ''),
($user->isActive()? '' : 'class="faded"'),
($user->isActive()? 'comments' : 'comment-alt'),
$user->getName(),
$user->getEmail());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment