summaryrefslogtreecommitdiff
path: root/test/test_classes.php
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_classes.php')
-rw-r--r--test/test_classes.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_classes.php b/test/test_classes.php
index c36e1bd..3a61773 100644
--- a/test/test_classes.php
+++ b/test/test_classes.php
@@ -100,6 +100,7 @@
'BLACK' => "30",
'RED' => "31",
'GREEN' => "32",
+ 'DEFAULT' => "00",
);
/**
@@ -118,7 +119,7 @@
* Colouring code loosely based on
* http://www.zend.com//code/codex.php?ozid=1112&single=1
*/
- private static function format_line($line, $colour='BLACK') {
+ private static function format_line($line, $colour='DEFAULT') {
if (isset($_SERVER['HTTP_USER_AGENT'])) {
$colour = strtolower($colour);
return "<p style=\"color: $colour;\">$line</p>\n";