added post URL backconversion to UTF8

This commit is contained in:
diml 2008-04-08 21:55:22 +00:00
parent a41b301703
commit f1cf028af8

View File

@ -245,4 +245,13 @@ function glossary_check_text_access($path, $itemtype, $this_id, $user, $group_id
return true;
}
/**
* post processes the url for cleaner output.
* @param string $title
*/
function glossary_link_post_processing($title){
return mb_convert_encoding($title, 'auto', 'UTF-8');
}
?>