summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-06-17 03:05:48 -0700
committerZach Copley <zach@controlyourself.ca>2009-06-17 03:05:48 -0700
commitaf4b18b1e2ef8aded26fc4788c571012da04d1cf (patch)
treeddbc9d593b413804e45ec20c4955f46c2d2c6232 /lib
parentac3cccefb53579b01618d5ef728e883dae752fd2 (diff)
Uppercase hex color values
Diffstat (limited to 'lib')
-rw-r--r--lib/webcolor.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/webcolor.php b/lib/webcolor.php
index aaf31d990..f3ca6e94a 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);
}