mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 08:25:55 +00:00
_color_pack: define variable before using
This commit is contained in:
@@ -216,6 +216,7 @@ function _color_unpack($hex, $normalize = false) {
|
||||
|
||||
### Convert an RGB triplet to a hex color.
|
||||
function _color_pack($rgb, $normalize = false) {
|
||||
$out = 0;
|
||||
foreach ($rgb as $k => $v) {
|
||||
$out |= (($v * ($normalize ? 255 : 1)) << (16 - $k * 8));
|
||||
}return '#'. str_pad(dechex($out), 6, 0, STR_PAD_LEFT);
|
||||
|
||||
Reference in New Issue
Block a user