Skip to content
This repository has been archived by the owner on Jun 17, 2018. It is now read-only.

Commit

Permalink
DashletOtrsQueue: use new CSS severities
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-batz committed Nov 2, 2015
1 parent bfbd016 commit c96a704
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/yourDashboard/dashboard/dashlets/DashletOtrsQueue.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public function getHtmlContentString()
}
$ticket = $connector->getTicketSummary($ticketId);

$output .= "<tr class=\"dashboard-severity-cleared\">";
$output .= "<tr class=\"dashboard-severity-warning\">";
$output .= "<td><a href=\"$linkUrlBase/index.pl?Action=AgentTicketZoom;TicketID={$ticket['TicketID']}\" target=\"_blank\">{$ticket['TicketNumber']}</a></td>";
$output .= "<td>{$ticket['Title']}</td>";
$output .= "<td class=\"dashboard-nowrap\">(".$this->getAgeString($ticket['Age']).")</td>";
Expand All @@ -81,7 +81,7 @@ public function getHtmlContentString()
//output, if there are further tickets
if(count($tickets) > $maxEntries)
{
$output .= "<tr class=\"dashboard-severity-cleared\"><td colspan=\"3\">more tickets in configured queues...</td></tr>";
$output .= "<tr class=\"dashboard-severity-warning\"><td colspan=\"3\">more tickets in configured queues...</td></tr>";
}

//output if no tickets were found
Expand Down

0 comments on commit c96a704

Please sign in to comment.