William
Thank you for the patch. I will commit it shortly.
Paul Spencer
William Wong wrote:
> Found a discrepancy with
> JOA/jetspeed/modules/actions/CreateNewUserAndConfirm.java where
> the following property could have been incorrectly spelled:
>
> newuser.confirm.email.enable
>
> Should have been:
>
> newuser.confirm.enable
>
> Attached is the patch if required. This will fix a bug where
> email confirmation does not show a proper secret key to use.
>
> -william
>
>
> ------------------------------------------------------------------------
>
> Index: CreateNewUserAndConfirm.java
> ===================================================================
> RCS file:
>/home/cvspublic/jakarta-jetspeed/src/java/org/apache/jetspeed/modules/actions/CreateNewUserAndConfirm.java,v
> retrieving revision 1.26
> diff -u -r1.26 CreateNewUserAndConfirm.java
> --- CreateNewUserAndConfirm.java 2001/11/27 12:59:56 1.26
> +++ CreateNewUserAndConfirm.java 2001/12/18 02:12:39
> @@ -172,7 +172,7 @@
> // allow for disabling of email for configurations without a mail
>server
> boolean newUserNotification =
>JetspeedResources.getBoolean("newuser.notification.enable", false);
> boolean newUserApproval =
>JetspeedResources.getBoolean("newuser.approval.enable", false);
> - boolean enableMail =
>JetspeedResources.getBoolean("newuser.confirm.email.enable", false);
> + boolean enableMail =
>JetspeedResources.getBoolean("newuser.confirm.enable", false);
> if (false == enableMail)
> confirmValue = JetspeedResources.CONFIRM_VALUE;
>
>
>
>
> ------------------------------------------------------------------------
>
> --
> To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>