MyBB Community Forums

Full Version: No Forum Names
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Well I just converted from vB 3.8 to MyBB. Everything went well except that there are no forum names on the forum index. How can I fix this? I have posted a picture of the problem.
Similar issue here: http://community.mybboard.net/thread-49313.html

If you didn't already, try using the Beta 4 SVN Snapshot.
Ok, well I just tried the Beta 4, and that didn't fix the problem. So should I just wait for the Beta 5?

EDIT: Well since the forums were already made, I just edited the forum names. So now everything is well.
(2009-05-11, 01:28 AM)The360Place Wrote: [ -> ]Ok, well I just tried the Beta 4, and that didn't fix the problem. So should I just wait for the Beta 5?

EDIT: Well since the forums were already made, I just edited the forum names. So now everything is well.

modify vbulletin3.php (mybb_merge_svnsnap_r4298)

Find code
$insert_forum['title'] = encode_to_utf8($forums['title'], "forum", "forums");

whit this,
$insert_forum['name'] = $forum['title'];


Then find code
$insert_forum['description'] = encode_to_utf8($forums['description'], "forum", "forums");

whit this,
$insert_forum['description'] = $forum['description'];

I have tested it and all forum and sunforum name are display with no problom.