Found a work-around -
In the admin.asp, at line 243, change:
If an admin anyway don't let em re-type in their username
If intGroupID = 1 Then
Response.Write(strLoggedInUsername & "<input type=""hidden"" name=""name"" id=""name"" value=""" & strLoggedInUsername & """ />")
Else text box to write in username as well
Else
Response.Write("<input type=""text"" name=""name"" id=""name"" size=""15"" maxlength=""15"" />")
End If
to:
'If an admin anyway don't let em re-type in their username
'If intGroupID = 1 Then
' Response.Write(strLoggedInUsername & "<input type=""hidden"" name=""name"" id=""name"" value=""" & strLoggedInUsername & """ />")
'Else text box to write in username as well
'Else
Response.Write("<input type=""text"" name=""name"" id=""name"" size=""15"" maxlength=""15"" />")
'End If
This will let you re-enter the Administrator username and password to login.
Edited by synistyr - 27 October 2006 at 6:19pm