From: Zach Copley Date: Wed, 17 Jun 2009 10:05:48 +0000 (-0700) Subject: Uppercase hex color values X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=af4b18b1e2ef8aded26fc4788c571012da04d1cf;p=quix0rs-gnu-social.git Uppercase hex color values --- diff --git a/lib/webcolor.php b/lib/webcolor.php index aaf31d9903..f3ca6e94a8 100644 --- a/lib/webcolor.php +++ b/lib/webcolor.php @@ -164,7 +164,7 @@ class WebColor { $hexcolor .= (strlen(dechex($this->blue)) < 2 ? '0' : '') . dechex($this->blue); - return $hexcolor; + return strtoupper($hexcolor); }