diff options
Diffstat (limited to 'modules/vauth/init.php')
-rw-r--r-- | modules/vauth/init.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/vauth/init.php b/modules/vauth/init.php index f79c18f6..3d705cdb 100644 --- a/modules/vauth/init.php +++ b/modules/vauth/init.php @@ -100,6 +100,11 @@ function vauth_init($data) { vauth_error('Cookie Domain Not Defined [cookie_domain]'); $error_status = true; } + + /* For now we won't require it */ + if (!isset($data['remember_length'])) { + $data['remember_length'] = '900'; + } /* If an error has occured then return false */ if ($error_status) { return false; } |