From cc669e3727615a1a3eab355c069c7ba6c2d307a7 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Mon, 22 Sep 2008 05:53:39 -0400 Subject: [PATCH] - read current language from rcube_user object (config may contains 'pl', but user 'pl_PL') --- program/steps/settings/func.inc | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/program/steps/settings/func.inc b/program/steps/settings/func.inc index 1b399de..4ea8dad 100644 --- a/program/steps/settings/func.inc +++ b/program/steps/settings/func.inc @@ -22,7 +22,6 @@ if (!$OUTPUT->ajax_call) $OUTPUT->set_pagetitle(rcube_label('preferences')); - function rcmail_user_prefs_form($attrib) { global $RCMAIL; @@ -49,7 +48,7 @@ $select_lang->add(array_values($a_lang), array_keys($a_lang)); $table->add('title', html::label($field_id, Q(rcube_label('language')))); - $table->add(null, $select_lang->show($config['language'])); + $table->add(null, $select_lang->show($RCMAIL->user->language)); } -- Gitblit v1.9.1