summaryrefslogtreecommitdiff
path: root/plugins/password/password.php
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-05-31 11:40:07 +0000
committeralecpl <alec@alec.pl>2009-05-31 11:40:07 +0000
commitd257c4064f68d3c43ca3330b466eb4d7eaaa1165 (patch)
treede7d9954bb88e64a30f3de0cb5de1c82708f7478 /plugins/password/password.php
parent9808b3c437d841a88234272ba2c023ab70ccd580 (diff)
- don't register body handler on plugin init (#1485888)
Diffstat (limited to 'plugins/password/password.php')
-rw-r--r--plugins/password/password.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/password/password.php b/plugins/password/password.php
index 0763e91c5..767ddab82 100644
--- a/plugins/password/password.php
+++ b/plugins/password/password.php
@@ -90,13 +90,14 @@ class password extends rcube_plugin
$rcmail->output->add_label('password');
$this->register_action('plugin.password', array($this, 'password_init'));
$this->register_action('plugin.password-save', array($this, 'password_save'));
- $this->register_handler('plugin.body', array($this, 'password_form'));
$this->include_script('password.js');
}
function password_init()
{
$this->add_texts('localization/');
+ $this->register_handler('plugin.body', array($this, 'password_form'));
+
$rcmail = rcmail::get_instance();
$rcmail->output->set_pagetitle($this->gettext('changepasswd'));
$rcmail->output->send('plugin');
@@ -107,9 +108,11 @@ class password extends rcube_plugin
$rcmail = rcmail::get_instance();
$this->add_texts('localization/');
- $confirm = $rcmail->config->get('password_confirm_current');
+ $this->register_handler('plugin.body', array($this, 'password_form'));
$rcmail->output->set_pagetitle($this->gettext('changepasswd'));
+ $confirm = $rcmail->config->get('password_confirm_current');
+
if (($confirm && !isset($_POST['_curpasswd'])) || !isset($_POST['_newpasswd']))
$rcmail->output->command('display_message', $this->gettext('nopassword'), 'error');
else {