|
From: Benjamin C. <bc...@us...> - 2001-10-06 03:53:36
|
Update of /cvsroot/phpbt/phpbt/admin
In directory usw-pr-cvs1:/tmp/cvs-serv4854/admin
Modified Files:
severity.php
Log Message:
That should wrap up the cvs -- of course, I'm sure I missed something or introduced a bug :)
Index: severity.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/severity.php,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- severity.php 2001/10/06 03:35:37 1.10
+++ severity.php 2001/10/06 03:53:33 1.11
@@ -107,9 +107,8 @@
while ($row = $q->grab()) {
$t->set_var(array(
'bgcolor' => USE_SEVERITY_COLOR ? $row['severity_color'] :
- ((++$i % 2 == 0) ? '#dddddd' : '#ffffff'),
- 'trclass' => USE_SEVERITY_COLOR ? '' :
- $i % 2 ? '' : 'alt',
+ ((++$i % 2 == 0) ? '#dddddd' : ''),
+ 'trclass' => USE_SEVERITY_COLOR ? '' : ($i % 2 ? '' : 'alt'),
'severityid' => $row['severity_id'],
'name' => $row['severity_name'],
'description' => $row['severity_desc'],
|