function html5_tools_preprocess_page in HTML5 Tools 6
Preprocess function to clean up drupal's default variables
File
- ./
html5_tools.module, line 99
Code
function html5_tools_preprocess_page(&$vars) {
$vars['styles'] = html5_tools_clean($vars['styles']);
$vars['scripts'] = html5_tools_clean($vars['scripts']);
$vars['head'] = html5_tools_clean($vars['head']);
}