hi,
i was trying the sfCombineFilter plugin and i found a bug in the getCombinedStylesheets method that didn't allow the css packed to work.
The getCombinedStylesheets returns
/css/packed//css/cpanel.css,/css/layout2.css,/css/default.css
and it should be
/css/packed/cpanel.css,layout2.css,default.css
To fix, change the following line:
$combined_sources[] = (!$root_css_only ? preg_replace("/^".str_replace('/', '\/', $sf_relative_url_root.'/css/')."/i", '', $path) : $path);
to:
$combined_sources[] = ($root_css_only ? preg_replace("/^".str_replace('/', '\/', $sf_relative_url_root.'/css/')."/i", '', $path) : $path);
I tried to find Kiril Angov's contact, but couldn't find it.