* change status label colors.

This commit is contained in:
Catouse
2018-10-08 10:14:56 +08:00
parent e427eb88d9
commit 55fecfe0be
48 changed files with 95 additions and 109 deletions
+5 -5
View File
@@ -2523,9 +2523,9 @@ class bugModel extends model
echo zget($this->lang->bug->typeList, $bug->type);
break;
case 'status':
echo "<span class='status-{$bug->status}'><span class='status-text'>";
echo "<span class='status-bug status-{$bug->status}'>";
echo zget($this->lang->bug->statusList, $bug->status);
echo '</span></span>';
echo '</span>';
break;
case 'activatedCount':
echo $bug->activatedCount;
@@ -2627,9 +2627,9 @@ class bugModel extends model
/**
* Print assigned html.
*
* @param object $bug
* @param array $users
*
* @param object $bug
* @param array $users
* @access public
* @return void
*/