[PATCH] fix login bug.
The problem: Logging in on my goathack (running the latest code) wasn't setting the cookies properly.
The fix: Using an array wasn't necessary, or at least wasn't working. I got rid of the $etime's and made it a single scalar.
Example:
Patch: 2002-05-26-login.bml.diff
Update: This was wrong.
The fix: Using an array wasn't necessary, or at least wasn't working. I got rid of the $etime's and made it a single scalar.
Example:
- $COOKIE{'ljuser'} = [ $user, $etime ];
+ $COOKIE{'ljuser'} = $user;Test: http://goathack.livejournal.org:8030/login.bml , using test/testPatch: 2002-05-26-login.bml.diff
Update: This was wrong.
