Happy New Year
[squirrelmail.git] / plugins / change_password / backend / template.php
index ed4d94518ad91c3e306236f88f1bbe3f6a102a84..fd3a66cd8a4e519b9863e4b99cc497893f88c18b 100644 (file)
@@ -1,4 +1,5 @@
 <?php
+
 /**
  * Change password backend template
  *
@@ -9,6 +10,8 @@
  *
  * Replace the word template everywhere with a name for your backend.
  *
+ * @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
@@ -36,23 +39,12 @@ $squirrelmail_plugin_hooks['change_password_init']['template'] =
  */
 function cpw_template_init()
 {
-    global $color;
-
-    /**
-     * If SM_PATH isn't defined, define it.  Required to include files.
-     * @ignore
-     */
-    if (!defined('SM_PATH'))  {
-        define('SM_PATH','../../../');
-    }
-
-    // load error_box() function
-    include_once(SM_PATH . 'functions/display_messages.php');
+    global $oTemplate;
 
     // plugin is not configured. Handle error gracefully.
-    error_box(_("No valid backend defined."),$color);
+    error_box(_("No valid backend defined."));
     // close html and stop script execution
-    echo "</body></html>\n";
+    $oTemplate->display('footer.tpl');
     exit();
 }