Fix variable name typo
[squirrelmail.git] / plugins / change_password / setup.php
index 4301bea2b092b4dbc48a07f73563656f82b33603..b2763dd6aedc364011189da35afc719af3b7c0e4 100644 (file)
@@ -3,12 +3,11 @@
 /**
  * setup.php - Generic Change Password plugin
  *
- * Copyright (c) 2003-2004 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *
  * This plugin aims to provide a general framework for all password
  * changing methods that currently have their own plugins.
  *
+ * @copyright 2003-2020 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  * @version $Id$
  * @package plugins
  * @subpackage change_password
@@ -21,6 +20,7 @@ function squirrelmail_plugin_init_change_password() {
     global $squirrelmail_plugin_hooks;
 
     $squirrelmail_plugin_hooks['optpage_register_block']['change_password'] = 'change_password_optpage';
+    $squirrelmail_plugin_hooks['optpage_set_loadinfo']['change_password'] = 'change_password_loadinfo';
 }
 
 /**
@@ -37,6 +37,18 @@ function change_password_optpage() {
     );
 }
 
+/**
+ * Displays information after "Successfully Saved Options:"
+ * @since 1.5.1
+ */
+function change_password_loadinfo() {
+    global $optpage, $optpage_name;
+    if ($optpage=='change_password') {
+        // i18n: is displayed after "Successfully Saved Options:"
+        $optpage_name=_("User's Password");
+    }
+}
+
 /**
  * Return version information
  * @return string version number
@@ -44,4 +56,3 @@ function change_password_optpage() {
 function change_password_version() {
     return '0.2';
 }
-?>
\ No newline at end of file