2
the encoding would be the
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
line? If that's the case, you should be able to do this:
in your module's php file(s):
// After inclusion of root/header.php
// Modify charset
$xoopsTpl->assign('xoops_charset', 'UTF-08'); //or how it should be written
//Set page title - site name is displayed before this, so do not include
$xoopsTpl->assign('xoops_pagetitle', $xoopsModule->getVar('name')." - ".$directory_user_is_browsing);