From a08708509a9e4187a0dbed32c76c50ecf16df3dc Mon Sep 17 00:00:00 2001 From: alecpl Date: Sat, 16 May 2009 14:28:47 +0000 Subject: - set pagetitle in php not js, hu_HU locale --- plugins/password/password.php | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'plugins/password/password.php') diff --git a/plugins/password/password.php b/plugins/password/password.php index 0920c32f8..0763e91c5 100644 --- a/plugins/password/password.php +++ b/plugins/password/password.php @@ -97,15 +97,18 @@ class password extends rcube_plugin function password_init() { $this->add_texts('localization/'); - rcmail::get_instance()->output->send('plugin'); + $rcmail = rcmail::get_instance(); + $rcmail->output->set_pagetitle($this->gettext('changepasswd')); + $rcmail->output->send('plugin'); } function password_save() { $rcmail = rcmail::get_instance(); - $confirm = $rcmail->config->get('password_confirm_current'); $this->add_texts('localization/'); + $confirm = $rcmail->config->get('password_confirm_current'); + $rcmail->output->set_pagetitle($this->gettext('changepasswd')); if (($confirm && !isset($_POST['_curpasswd'])) || !isset($_POST['_newpasswd'])) $rcmail->output->command('display_message', $this->gettext('nopassword'), 'error'); @@ -123,7 +126,7 @@ class password extends rcube_plugin } rcmail_overwrite_action('plugin.password'); - rcmail::get_instance()->output->send('plugin'); + $rcmail->output->send('plugin'); } function password_form() @@ -135,10 +138,9 @@ class password extends rcube_plugin $rcmail->output->add_label( 'password.nopassword', 'password.nocurpassword', - 'password.passwordinconsistency', - 'password.changepasswd' + 'password.passwordinconsistency' ); -// $rcmail->output->set_pagetitle($this->gettext('changepasswd')); + $rcmail->output->set_env('product_name', $rcmail->config->get('product_name')); // allow the following attributes to be added to the tag -- cgit v1.2.3