Skip to content

Commit

Permalink
*8759* Make boldness depend on read/unread state
Browse files Browse the repository at this point in the history
  • Loading branch information
asmecher committed Jun 6, 2014
1 parent 256bfd1 commit 1b0a996
Showing 1 changed file with 4 additions and 2 deletions.
Expand Up @@ -42,8 +42,10 @@ function getCellActions($request, $row, $column, $position = GRID_ACTION_POSITIO
new RedirectAction(
$notificationMgr->getNotificationUrl($request, $notification)
),
'"' . $this->_getTitle($notification) . '": ' .
$notificationMgr->getNotificationMessage($request, $notification)
($notification->getDateRead()?'':'<strong>') . __('common.tasks.titleAndTask', array(
'title' => $this->_getTitle($notification),
'task' => $notificationMgr->getNotificationMessage($request, $notification)
)) . ($notification->getDateRead()?'':'</strong>')
));
}

Expand Down

0 comments on commit 1b0a996

Please sign in to comment.