hopefully fix locales

This commit is contained in:
czaks 2014-10-09 04:09:30 +02:00
parent dfd05e88f9
commit 3a552e5b76

View File

@ -335,7 +335,7 @@ function create_antibot($board, $thread = null) {
} }
function rebuildThemes($action, $boardname = false) { function rebuildThemes($action, $boardname = false) {
global $config, $board; global $config, $board, $current_locale;
// Save the global variables // Save the global variables
$_config = $config; $_config = $config;
@ -349,12 +349,25 @@ function rebuildThemes($action, $boardname = false) {
$config = $_config; $config = $_config;
$board = $_board; $board = $_board;
// Reload the locale
if ($config['locale'] != $current_locale) {
$current_locale = $config['locale'];
init_locale($config['locale'], $error);
}
rebuildTheme($theme['theme'], $action, $boardname); rebuildTheme($theme['theme'], $action, $boardname);
} }
// Restore them again // Restore them again
$config = $_config; $config = $_config;
$board = $_board; $board = $_board;
// Reload the locale
if ($config['locale'] != $current_locale) {
$current_locale = $config['locale'];
init_locale($config['locale'], $error);
}
} }