diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-28 14:50:53 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-28 14:50:53 +0000 |
commit | b8192c6349d9b5b3293099d06ee1eb239dd7b9fd (patch) | |
tree | 91611103909d2cf240ebcc994e51d8fa9cbf03e5 /actions | |
parent | 92653993d3d6376936d32f071803e4a372faf0c2 (diff) | |
download | elgg-b8192c6349d9b5b3293099d06ee1eb239dd7b9fd.tar.gz elgg-b8192c6349d9b5b3293099d06ee1eb239dd7b9fd.tar.bz2 |
Closes #306
git-svn-id: https://code.elgg.org/elgg/trunk@2330 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions')
-rw-r--r-- | actions/login.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/login.php b/actions/login.php index 774b6dfaa..c35450698 100644 --- a/actions/login.php +++ b/actions/login.php @@ -18,7 +18,7 @@ $username = get_input('username');
$password = get_input("password");
- $persistent = get_input("persistent");
+ $persistent = get_input("persistent", false);
// If all is present and correct, try to log in
$result = false;
|