From d14d8c76632540a6e30f0599aee838fd86aa5937 Mon Sep 17 00:00:00 2001 From: Lars Kneschke Date: Mon, 19 Mar 2007 09:13:57 +0000 Subject: [PATCH] merged from trunk --- setup/inc/class.setup.inc.php | 11 +++++------ setup/inc/functions.inc.php | 9 +++------ 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/setup/inc/class.setup.inc.php b/setup/inc/class.setup.inc.php index 3929e08a6e..4f8cbd7255 100644 --- a/setup/inc/class.setup.inc.php +++ b/setup/inc/class.setup.inc.php @@ -175,7 +175,6 @@ { #phpinfo(); $FormLogout = get_var('FormLogout', array('GET','POST')); - $ConfigLang = get_var('ConfigLang', array('POST','COOKIE')); if(!$FormLogout) { $ConfigLogin = get_var('ConfigLogin', array('POST')); @@ -189,6 +188,7 @@ $ConfigPW = get_var('ConfigPW', array('POST','COOKIE')); $HeaderUser = get_var('HeaderUser', array('POST','COOKIE')); $HeaderPW = get_var('HeaderPW', array('POST','COOKIE')); + $ConfigLang = get_var('ConfigLang', array('POST','COOKIE')); /* Setup defaults to aid in header upgrade to version 1.26. * This was the first version to include the following values. @@ -215,7 +215,7 @@ $this->set_cookie('ConfigUser','',$expire,'/'); $this->set_cookie('ConfigPW','',$expire,'/'); $this->set_cookie('ConfigDomain','',$expire,'/'); -// $this->set_cookie('ConfigLang','',$expire,'/'); + $this->set_cookie('ConfigLang','',$expire,'/'); $GLOBALS['egw_info']['setup']['LastDomain'] = $_COOKIE['ConfigDomain']; $GLOBALS['egw_info']['setup']['ConfigLoginMSG'] = lang('You have successfully logged out'); $GLOBALS['egw_info']['setup']['HeaderLoginMSG'] = ''; @@ -225,7 +225,7 @@ $expire = time() - 86400; $this->set_cookie('HeaderUser','',$expire,'/'); $this->set_cookie('HeaderPW','',$expire,'/'); -// $this->set_cookie('ConfigLang','',$expire,'/'); + $this->set_cookie('ConfigLang','',$expire,'/'); $GLOBALS['egw_info']['setup']['HeaderLoginMSG'] = lang('You have successfully logged out'); $GLOBALS['egw_info']['setup']['ConfigLoginMSG'] = ''; return False; @@ -920,7 +920,6 @@ 'account_primary_group' => $primary_group_id, 'account_expires' => -1, 'account_email' => $email, - 'account_members' => '' ); if (!($accountid = $GLOBALS['egw']->accounts->save($account))) { @@ -971,7 +970,7 @@ $accounts = $GLOBALS['egw']->accounts->search(array( 'type' => 'accounts', 'start' => 0, - 'offset' => 2 // we only need to check 2 accounts, if we just check for not anonymous + 'offset' => 2, // we only need to check 2 accounts, if we just check for not anonymous )); if (!$accounts || !is_array($accounts) || !count($accounts)) @@ -1021,7 +1020,7 @@ $this->db->delete($this->acl_table,array( 'acl_appname' => $app, 'acl_location' => $location, - 'acl_account' => $account + 'acl_account' => $account, ),__LINE__,__FILE__); if ((int) $rights) diff --git a/setup/inc/functions.inc.php b/setup/inc/functions.inc.php index 538d89a22a..c70c032732 100644 --- a/setup/inc/functions.inc.php +++ b/setup/inc/functions.inc.php @@ -154,14 +154,11 @@ { if($data['available'] && !empty($data['lang'])) { + $selected = ''; $short = substr($data['lang'],0,2); - if ($short == $ConfigLang || $data['lang'] == $ConfigLang || empty($ConfigLang) && $short == substr($_SERVER['HTTP_ACCEPT_LANGUAGE'],0,2)) + if ($short == $ConfigLang || empty($ConfigLang) && $short == substr($_SERVER['HTTP_ACCEPT_LANGUAGE'],0,2)) { - $selected = ' selected'; - } - else - { - $selected = ''; + $selected = ' selected="selected"'; } $select .= '' . "\n"; }