Kirby, thanks for the demo. I've installed at my site, and the language setting is saved when I edit the forum, but it's not working when you browse to the forum.
Maybe I'm misunderstanding something from Step #2 of your instructions:
PHP Code:
2) In global.php
FIND
--------------------------------------------------
// #############################################################################
// Get date / time info
fetch_options_overrides($bbuserinfo);
fetch_time_data();
// global $bbuserinfo setup -- this has to happen after fetch_options_overrides
if ($bbuserinfo['lastvisit'])
{
$bbuserinfo['lastvisitdate'] = vbdate($vboptions['dateformat'] . ' ' . $vboptions['timeformat'], $bbuserinfo['lastvisit']);
}
else
{
$bbuserinfo['lastvisitdate'] = -1;
}
// get some useful info
$templateversion = &$vboptions['templateversion'];
// #############################################################################
// initialize $vbphrase and set language constants
$vbphrase = init_language();
--------------------------------------------------
MOVE this block ABOVE
--------------------------------------------------
// #############################################################################
// ######################## START TEMPLATES & STYLES ###########################
// #############################################################################
--------------------------------------------------
Then ABOVE the moved block ADD
--------------------------------------------------
// Fetch Language Override if specified
if ($foruminfo['languageid'] AND $foruminfo['languageid'] != $bbuserinfo['languageid'] AND $foruminfo['languageid'] != $vboptions['languageid'])
{
$language = $DB_site->query_first("SELECT languageid" . fetch_language_fields_sql(0) . " FROM " . TABLE_PREFIX . "language WHERE languageid = " . intval($foruminfo['languageid']));
$bbuserinfo = array_merge($bbuserinfo, $language);
}
--------------------------------------------------
I don't really understand the point of moving the comment block up (though I did so anyways). Is there something that needs to happen to reinitialize global.php?
If it helps,
this is the forum in question, and the language file I've specified is Spanish (obviously).