From: pdontthink Date: Tue, 17 Mar 2009 21:23:30 +0000 (+0000) Subject: Don't use white color in highlight escape code. Thanks to Tomas Kuliavas X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=commitdiff_plain;h=021044ece091a4bbebb23fe356ec749f5c8c4b71;ds=inline Don't use white color in highlight escape code. Thanks to Tomas Kuliavas git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@13435 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/config/conf.pl b/config/conf.pl index e87edef8..adf459c6 100755 --- a/config/conf.pl +++ b/config/conf.pl @@ -547,7 +547,7 @@ $list_supported_imap_servers = ##################################################################################### if ( $config_use_color == 1 ) { - $WHT = "\x1B[37;1m"; + $WHT = "\x1B[1m"; $NRM = "\x1B[0m"; } else { $WHT = ""; @@ -906,7 +906,7 @@ while ( ( $command ne "q" ) && ( $command ne "Q" ) && ( $command ne ":q" ) ) { $NRM = ""; } else { $config_use_color = 1; - $WHT = "\x1B[37;1m"; + $WHT = "\x1B[1m"; $NRM = "\x1B[0m"; } } elsif ( $command =~ /^w([0-9]+)/ ) {