mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-04 17:02:17 +02:00
- local.lang is loaded without fallback on default language or PHPWG_DEFAULT_LANGUAGE (needed to change the signature of load_language which became a little too big)
- move a function from functions.inc.php to functions_picture.inc.php (included only when necessary) - removed some css (not as much as I wanted) git-svn-id: http://piwigo.org/svn/trunk@2479 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -57,11 +57,11 @@ function language_switch()
|
||||
// Reload language only if it isn't the same one
|
||||
if ( $same !== $user['language'])
|
||||
{
|
||||
load_language('common.lang', '', $user['language']);
|
||||
load_language('local.lang', '', $user['language']);
|
||||
load_language('common.lang', '', array('language'=>$user['language']) );
|
||||
load_language('local.lang', '', array('language'=>$user['language'], 'no_fallback'=>true) );
|
||||
if (defined('IN_ADMIN') and IN_ADMIN)
|
||||
{
|
||||
load_language('admin.lang', '', $user['language']);
|
||||
load_language('admin.lang', '', array('language'=>$user['language']) );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user