function _minify_html_style_callback in Minify 7
1 string reference to '_minify_html_style_callback'
- _minify_html in ./
minify.module  - Helper function to minify HTML
 
File
- ./
minify.module, line 222  
Code
function _minify_html_style_callback($m) {
  $search = array(
    '!/\\*.*?\\*/!s',
    // remove multi-line comment
    '/^\\s+|\\s+$/m',
  );
  $replace = array(
    '',
  );
  $style = preg_replace($search, $replace, $m[0]);
  return _minify_reserve_place($style);
}