Update of /cvsroot/phpslash/phpslash-ft/public_html/admin
In directory usw-pr-cvs1:/tmp/cvs-serv6220/phpslash-ft/public_html/admin
Modified Files:
authorAdmin.php3
Log Message:
auth_preauth
Index: authorAdmin.php3
===================================================================
RCS file: /cvsroot/phpslash/phpslash-ft/public_html/admin/authorAdmin.php3,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** authorAdmin.php3 11 Apr 2002 21:05:06 -0000 1.5
--- authorAdmin.php3 20 May 2002 19:54:17 -0000 1.6
***************
*** 50,53 ****
--- 50,63 ----
$author->listAuthor();
break;
+ case "lostpw":
+ $success = $author->lostpw($HTTP_GET_VARS, $auth->auth["uid"]);
+ if($success) {
+ echo message( pslgetText($author->message));
+ } else {
+ error( pslgetText($author->message));
+ }
+ $author->newAuthor();
+ $author->listAuthor();
+ break;
case "update":
case "new":
|