Closed (fixed)
Project:
Sassy
Version:
7.x-2.2
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
23 Dec 2011 at 11:56 UTC
Updated:
3 Jan 2012 at 11:08 UTC
line 48 in color.inc of the compass module
function sassy_compass__ie_hex_str($color) {
SassLiteral::assertType($color, 'SassColour');
$alpha = round($color->alpha * 255);
$alpha_str = str_pad(dechex($alpha), 2, '0', STR_PAD_LEFT);
$col = $color->asHex(FALSE);
return new SassString(strtoupper("##{$alphastr}#{$col}"));
}
$alphastr is undefined.
Comments
Comment #1
richthegeek commentedFixed in 2.3