manish143143 / cssmin

Automatically exported from code.google.com/p/cssmin
0 stars 0 forks source link

Private property bug #76

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Line 4805 of cssmin-v3.0.1.php 
CssMin::triggerError(new CssError(__FILE__, __LINE__, __METHOD__ . ": Invalid 
@import at-rule syntax", $this->parser->buffer));
should be
CssMin::triggerError(new CssError(__FILE__, __LINE__, __METHOD__ . ": Invalid 
@import at-rule syntax", $this->parser->getBuffer()));

$this->parser->buffer is a private property. 

Original issue reported on code.google.com by mrtnbr...@googlemail.com on 5 Feb 2014 at 1:26