function html_title_preprocess_search_result in HTML Title 7
Same name and namespace in other branches
- 8 html_title.module \html_title_preprocess_search_result()
- 6 html_title.module \html_title_preprocess_search_result()
Implementation of hook_preprocess_search_result()
1 string reference to 'html_title_preprocess_search_result'
- html_title_theme_registry_alter in ./
html_title.module - Implementation of hook_theme_registry_alter()
File
- ./
html_title.module, line 86 - This module enables limited HTML to be used in node titles. It strips title markup from RSS feeds to eliminate unsightly markup in feed readers.
Code
function html_title_preprocess_search_result(&$vars) {
if (isset($vars['result']['title'])) {
$vars['title'] = html_title_filter_xss($vars['result']['title']);
}
}