alecpl
2008-05-21 a55606b12241264054054ab0c0520ec238ee2687
-localized pagetitle in Settings and Address book
-removed useless and not working code


6 files modified
23 ■■■■ changed files
CHANGELOG 4 ●●●● patch | view | raw | blame | history
program/steps/addressbook/func.inc 3 ●●●● patch | view | raw | blame | history
program/steps/settings/edit_identity.inc 6 ●●●●● patch | view | raw | blame | history
program/steps/settings/func.inc 5 ●●●● patch | view | raw | blame | history
program/steps/settings/identities.inc 3 ●●●● patch | view | raw | blame | history
program/steps/settings/manage_folders.inc 2 ●●●●● patch | view | raw | blame | history
CHANGELOG
@@ -1,6 +1,10 @@
CHANGELOG RoundCube Webmail
---------------------------
2008/05/21 (alec)
----------
- Localized pagetitle in Settings
2008/05/19 (alec)
----------
- Fixed Mysql DDL for default identities creation (#1485070)
program/steps/addressbook/func.inc
@@ -239,7 +239,8 @@
  return $out;
  }
$OUTPUT->set_pagetitle(rcube_label('addressbook'));
  
// register UI objects
$OUTPUT->add_handlers(array(
program/steps/settings/edit_identity.inc
@@ -19,17 +19,15 @@
*/
$OUTPUT->set_pagetitle(rcube_label('identities'));
if (($_GET['_iid'] || $_POST['_iid']) && $RCMAIL->action=='edit-identity')
  {
  $IDENTITY_RECORD = $USER->get_identity(get_input_value('_iid', RCUBE_INPUT_GPC));
  
  if (is_array($IDENTITY_RECORD))
    $OUTPUT->set_env('iid', $IDENTITY_RECORD['identity_id']);
  $OUTPUT->set_pagetitle(rcube_label('edititem'));
  }
else
  $OUTPUT->set_pagetitle(rcube_label('newitem'));
$OUTPUT->include_script('list.js');
program/steps/settings/func.inc
@@ -19,10 +19,7 @@
*/
if ($USER->ID)
  $OUTPUT->set_pagetitle(rcube_label('settingsfor') . " ". $USER->get_username());
$OUTPUT->set_pagetitle(rcube_label('preferences'));
function rcmail_user_prefs_form($attrib)
program/steps/settings/identities.inc
@@ -19,8 +19,7 @@
*/
if ($USER_DATA = $DB->fetch_assoc($sql_result))
  $OUTPUT->set_pagetitle(sprintf('%s (%s@%s)', rcube_label('identities'), $USER_DATA['username'], $USER_DATA['mail_host']));
$OUTPUT->set_pagetitle(rcube_label('identities'));
$OUTPUT->include_script('list.js');
program/steps/settings/manage_folders.inc
@@ -19,6 +19,8 @@
*/
$OUTPUT->set_pagetitle(rcube_label('folders'));
// init IMAP connection
$RCMAIL->imap_init(true);