7
Yes I use [ee][/ee] for my english content. Only in theme I use _en.
Now I solved the multilingo problem, with exception of the topic_name display in viewforum. Until now I could not solve this, you can see it
hereNow, I don't know if this is good programming, see for yourself, this is what I changed :
blocks/newbb_new.php
From line 157 :
// hhts multilingo
$topic['forum_name'] = $myts->makeTboxData4Show($myts->htmlSpecialChars($arr['forum_name']));
$topic['id'] = $arr['topic_id'];
if(in_array($arr['topic_poster'], $forum_admin) && $allow_moderator_html){
// hhts multilingo
$topic['title'] = $myts->makeTboxData4Show($arr['topic_title']);
}else{
$topic['title'] = $myts->makeTboxData4Show($myts->htmlSpecialChars($arr['topic_title']));
viewtopic.php
From line 183 :
// hhts multilingo
$forumdata['topic_title'] = $myts->makeTboxdata4Show($myts->undohtmlSpecialChars($forumdata['topic_title']));
else
$forumdata['topic_title'] = $myts->makeTboxData4Show($forumdata['topic_title']);
$forumdata['forum_name'] = $myts->makeTboxData4Show($forumdata['forum_name']);
// hhts multilingo