simonschaufi / cssmin

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

Minification option "compress-color-values" does not work #14

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
if (substr($m[1], 1, 1) == substr($m[1], 2, 1) && substr($m[1], 3, 1) == 
substr($m[1], 4, 1) && substr($m[1], 5, 1) == substr($m[1], 6, 1))

should like blew

if (substr($m[1], 0, 1) == substr($m[1], 1, 1) && substr($m[1], 2, 1) == 
substr($m[1], 3, 1) && substr($m[1], 4, 1) == substr($m[1], 5, 1))

Original issue reported on code.google.com by mengjie1...@gmail.com on 12 Aug 2010 at 10:30

GoogleCodeExporter commented 9 years ago
Fixed with version 2.0.1.003. Thanks for reporting.

Original comment by joe.scylla on 12 Aug 2010 at 1:57