From 1f4daddea072b6196d619973b7d9ce7f27d70058 Mon Sep 17 00:00:00 2001 From: kink Date: Mon, 7 Feb 2005 13:43:16 +0000 Subject: [PATCH] small comment changes. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@8789 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- plugins/change_password/config.php | 8 +++++--- plugins/change_password/functions.php | 4 ++-- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/plugins/change_password/config.php b/plugins/change_password/config.php index 6f1f7cdc..be42921d 100644 --- a/plugins/change_password/config.php +++ b/plugins/change_password/config.php @@ -10,11 +10,13 @@ * @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; + diff --git a/plugins/change_password/functions.php b/plugins/change_password/functions.php index 8b1450d5..b7deb89f 100644 --- a/plugins/change_password/functions.php +++ b/plugins/change_password/functions.php @@ -15,7 +15,7 @@ * 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. */ @@ -108,4 +108,4 @@ function cpw_do_change() session_write_close(); header('Location: '.SM_PATH. 'src/options.php?optmode=submit&plugin_change_password=1'); exit; -} \ No newline at end of file +} -- 2.25.1