From 7aa8b3552ed4874ca4b387aee24f7bee4b206dd5 Mon Sep 17 00:00:00 2001 From: Kim Westlund Date: Thu, 5 Mar 2015 15:02:25 +0100 Subject: [PATCH] Reset all attributes after colorization --- dahbug.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dahbug.php b/dahbug.php index 7662e0a..150ee5e 100644 --- a/dahbug.php +++ b/dahbug.php @@ -955,7 +955,7 @@ static protected function _colorize($string, $color = null) return $string; } - $string = "\033[{$colorNumber}m" . $string . "\033[39m"; + $string = "\033[{$colorNumber}m" . $string . "\033[0m"; return $string; }