* @subpackage change_password
*/
-// the password changing mechanism you're using
+/** the password changing mechanism you're using */
$cpw_backend = 'template';
-
+/** the minimum and maximum length that the plugin will enforce on new passwords */
$cpw_pass_min_length = 4;
$cpw_pass_max_length = 25;
-$cpw_require_ssl = FALSE;
\ No newline at end of file
+/** whether we require the use of SSL/https to change a password */
+$cpw_require_ssl = FALSE;
+
* Will verify the input against a set of criteria:
* is every field supplied, does verify password match,
* does current password validate, ..
- * These criteria are (for now) backend-independant.
+ * These criteria are (for now) backend-independent.
*
* @return array Array with zero or more error messages.
*/
session_write_close();
header('Location: '.SM_PATH. 'src/options.php?optmode=submit&plugin_change_password=1');
exit;
-}
\ No newline at end of file
+}