Calling all Drupal developers!
Help us get this on the first page of Digg. DIGG NOW!
Help us get this on the first page of Digg. DIGG NOW!
views_css_safe($string)
contributions/views/views.module, line 1091
Prepare the specified string for use as a CSS identifier.
<?php
function views_css_safe($string) {
return str_replace('_', '-', $string);
}
?>