|
From: Benjamin C. <bc...@us...> - 2004-09-04 20:43:53
|
Update of /cvsroot/phpbt/phpbt/templates/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18562/templates/default Modified Files: Tag: htmltemplates buglist.html Log Message: Fix from mufasa for severity colors not showing. Index: buglist.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/templates/default/buglist.html,v retrieving revision 1.8.6.3 retrieving revision 1.8.6.4 diff -u -r1.8.6.3 -r1.8.6.4 --- buglist.html 19 Jul 2004 13:46:41 -0000 1.8.6.3 +++ buglist.html 4 Sep 2004 20:43:43 -0000 1.8.6.4 @@ -14,7 +14,7 @@ <?php foreach ($bugs[$i] as $var => $val) { if ($var == 'bug_link_id') $bugid = $val; - elseif ($var == 'severity_color') $bgcolor == $val; + elseif ($var == 'severity_color') $bgcolor = $val; else echo '<td '.(USE_SEVERITY_COLOR ? "bgcolor='$bgcolor'" : '').'>'.format_bug_col($val, $var, $bugid, $i).'</td>'; } ?> |