2
Solved UTF-8 problem.
I removed all
news_unhtml() function calls in modules/news/pdf/pdf.php file and now have correct utf-8 output.
Also found bug that adds a 1 to all to storyid on url parameter.
somewhere arround line 250 in modules/news/pdf/pdf.php file
$secondLine = XOOPS_URL.'/modules/news/article.php?storyid=1'.$storyid;
and changed it to:
$secondLine = XOOPS_URL.'/modules/news/article.php?storyid='.$storyid;
Still having problems when changing language with xlanguage getting error message.
Help!!!