diff options
author | rvelices <rv-github@modusoptimus.com> | 2008-08-20 00:35:22 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2008-08-20 00:35:22 +0000 |
commit | 5a6298548b194e0987cdccc8a11b04efa8c9fd61 (patch) | |
tree | a9cb03ff5870e6ed5a3e36d6ceead1391afa8587 /install.php | |
parent | dcbaefafdfb955f61c9b83eb8d2e15eea2880694 (diff) |
- 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
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/install.php b/install.php index a1c737c56..c83035522 100644 --- a/install.php +++ b/install.php @@ -206,9 +206,9 @@ else } } -load_language( 'common.lang', '', $language, false, 'utf-8' ); -load_language( 'admin.lang', '', $language, false, 'utf-8' ); -load_language( 'install.lang', '', $language, false, 'utf-8' ); +load_language( 'common.lang', '', array('language'=>$language, 'target_charset'=>'utf-8') ); +load_language( 'admin.lang', '', array('language'=>$language, 'target_charset'=>'utf-8') ); +load_language( 'install.lang', '', array('language'=>$language, 'target_charset'=>'utf-8') ); //----------------------------------------------------- template initialization $template=new Template(PHPWG_ROOT_PATH.'template/yoga', 'clear'); |