1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-29 01:34:31 +01:00
This commit is contained in:
8chan 2014-10-08 19:11:56 -07:00
commit e4a4415308

View File

@ -335,7 +335,7 @@ function create_antibot($board, $thread = null) {
}
function rebuildThemes($action, $boardname = false) {
global $config, $board;
global $config, $board, $current_locale;
// Save the global variables
$_config = $config;
@ -347,7 +347,14 @@ function rebuildThemes($action, $boardname = false) {
while ($theme = $query->fetch(PDO::FETCH_ASSOC)) {
// Restore them
$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);
}
@ -355,6 +362,12 @@ function rebuildThemes($action, $boardname = false) {
// Restore them again
$config = $_config;
$board = $_board;
// Reload the locale
if ($config['locale'] != $current_locale) {
$current_locale = $config['locale'];
init_locale($config['locale'], $error);
}
}