adding phpdoc blocks
authortokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 12 Apr 2004 06:59:24 +0000 (06:59 +0000)
committertokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 12 Apr 2004 06:59:24 +0000 (06:59 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@7083 7612ce4b-ef26-0410-bec9-ea0150e637f0

plugins/change_password/backend/index.php
plugins/change_password/backend/mysql.php
plugins/change_password/backend/poppassd.php
plugins/change_password/backend/template.php

index 1c4f4fcd77f3c6d5c543187eccc2b21d055504ce..149c9612903dadb29c7f217d563b3f3f07d1e1af 100644 (file)
@@ -10,7 +10,7 @@
  * people to the login screen. At this point no attempt is made to see if
  * the person is logged or not.
  *
- * $Id$
+ * @version $Id$
  * @package plugins
  */
 
index bb40be02144d22fcbe40d020c5217dd5356548e5..c2f50447a956e0ecdd7aeab71dc77cd43a9084ac 100644 (file)
@@ -1,6 +1,11 @@
 <?php
-/* MySQL change password backend
- * Author: Thijs Kinkhorst <kink@squirrelmail.org>
+/**
+ * MySQL change password backend
+ *
+ * @author Thijs Kinkhorst <kink@squirrelmail.org>
+ * @version $Id$
+ * @package plugins
+ * @subpackage change_password
  */
 
 /**
index d4ab89022852fc3fc216a0d5c3ce3b2ddfc87752..bb4bb1b4af3d8f9122fbb75fe2ecc77343246d4d 100644 (file)
@@ -1,9 +1,12 @@
 <?php
 
 /**
- * $id$
  * Poppassd change password backend
- * Author: Seth Randall <sethr@missoulafcu.org>
+ *
+ * @author Seth Randall <sethr@missoulafcu.org>
+ * @version $Id$
+ * @package plugins
+ * @subpackage change_password
  */
 
 /**
index 73bd20f2408c222bade1952e2204e68a8a823657..7d818be6d757c9644079515f70f626149d9466c9 100644 (file)
@@ -1,11 +1,17 @@
 <?php
-/*
- This is a template for a password changing mechanism. Currently,
- this contains two parts: the first is to register your function
- in the squirrelmail_plugin_hooks global, and the second is
- the function that does the actual changing.
-
- Replace the word template everywhere with a name for your backend.
+/**
+ * Change password backend template
+ *
+ * This is a template for a password changing mechanism. Currently,
+ * this contains two parts: the first is to register your function
+ * in the squirrelmail_plugin_hooks global, and the second is
+ * the function that does the actual changing.
+ *
+ * Replace the word template everywhere with a name for your backend.
+ *
+ * @version $Id$
+ * @package plugins
+ * @subpackage change_password
  */
 
 /**