Collector status on password change bug?
I see that the "Can't change User Roles without their Password" bug mentioned in: http://classic.zope.org:8080/Collector/1102/view http://classic.zope.org:8080/Collector/1134/view http://classic.zope.org:8080/Collector/1138/view (etc) is still in 2.1.6 http://classic.zope.org:8080/Collector/1138/view provides a patch. What is the recommended way to solve this long-standing problem?
Kent Polk wrote:
I see that the "Can't change User Roles without their Password" bug mentioned in:
http://classic.zope.org:8080/Collector/1102/view http://classic.zope.org:8080/Collector/1134/view http://classic.zope.org:8080/Collector/1138/view (etc)
is still in 2.1.6
http://classic.zope.org:8080/Collector/1138/view provides a patch. What is the recommended way to solve this long-standing problem?
This patch has been applied in CVS, and I believe the latest alpha version has it as well. Shane
Shane Hathaway wrote:
This patch has been applied in CVS, and I believe the latest alpha version has it as well.
Not quite, it's solved in a slightly different way in the CVS. We do the following to get the CVS solution to work with 2.1.4 and 2.1.6: Checkout editUser.dtml 1.10 and User.py 1.102 from the CVS. Then apply the following patch to editUser.dtml: *** editUser.dtml.old Thu Apr 20 10:29:39 2000 --- editUser.dtml Thu Apr 20 10:41:20 2000 *************** *** 26,32 **** <STRONG>New Password</STRONG> </TD> <TD VALIGN="TOP"> ! <INPUT TYPE="PASSWORD" NAME="password" SIZE="40"> </TD> </TR> <TR> --- 26,32 ---- <STRONG>New Password</STRONG> </TD> <TD VALIGN="TOP"> ! <INPUT TYPE="PASSWORD" NAME="password" SIZE="40" VALUE="password"> </TD> </TR> <TR> *************** *** 34,40 **** <STRONG>(Confirm)</STRONG> </TD> <TD VALIGN="TOP"> ! <INPUT TYPE="PASSWORD" NAME="confirm" SIZE="40"> </TD> </TR> </dtml-if> --- 34,40 ---- <STRONG>(Confirm)</STRONG> </TD> <TD VALIGN="TOP"> ! <INPUT TYPE="PASSWORD" NAME="confirm" SIZE="40" VALUE="confirm"> </TD> </TR> </dtml-if> HTH, Chris
participants (3)
-
Chris Withers -
kent@tiamat.goathill.org -
Shane Hathaway