Browse Source

locale cache: fix a bug when perms are done wrong

pull/40/head
czaks 8 years ago
parent
commit
a42256b296
  1. 4
      inc/functions.php

4
inc/functions.php

@ -127,7 +127,7 @@ function loadConfig() {
// So, we may store the locale in a tmp/ filesystem.
if (file_exists($fn = 'tmp/cache/locale_' . $boardsuffix ) ) {
$config['locale'] = file_get_contents($fn);
$config['locale'] = @file_get_contents($fn);
}
else {
$config['locale'] = 'en';
@ -144,7 +144,7 @@ function loadConfig() {
$config['locale'] = $matches[count($matches)-1];
}
file_put_contents($fn, $config['locale']);
@file_put_contents($fn, $config['locale']);
}
if ($config['locale'] != $current_locale) {

Loading…
Cancel
Save