|
From: Benjamin C. <bc...@us...> - 2001-10-06 03:35:40
|
Update of /cvsroot/phpbt/phpbt/admin
In directory usw-pr-cvs1:/tmp/cvs-serv31878/admin
Modified Files:
severity.php
Log Message:
Almost there with css everywhere. Bug list mouseover and background color is still undone
Index: severity.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/severity.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- severity.php 2001/10/05 04:22:46 1.9
+++ severity.php 2001/10/06 03:35:37 1.10
@@ -71,7 +71,7 @@
function list_items($severityid = 0, $error = '') {
- global $q, $t, $selrange, $order, $sort, $STRING, $TITLE;
+ global $q, $t, $selrange, $order, $sort, $STRING, $TITLE, $me;
$t->set_file('content','severitylist.html');
$t->set_block('content','row','rows');
@@ -108,7 +108,7 @@
$t->set_var(array(
'bgcolor' => USE_SEVERITY_COLOR ? $row['severity_color'] :
((++$i % 2 == 0) ? '#dddddd' : '#ffffff'),
- 'trclass' => USE_SEVERITY_COLOR ? $row['severity_color'] :
+ 'trclass' => USE_SEVERITY_COLOR ? '' :
$i % 2 ? '' : 'alt',
'severityid' => $row['severity_id'],
'name' => $row['severity_name'],
|