Skip to content

Commit

Permalink
#980 세션 재발급 시간을 너무 짧게 설정한 문제 고침
Browse files Browse the repository at this point in the history
- 테스트하던 코드가...
  • Loading branch information
bnu committed Sep 24, 2014
1 parent 7cb22a6 commit 73ea36f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/member/member.controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -1891,7 +1891,7 @@ function regenerateSession()
$_SESSION['session_checkup'] = time();
}

if(time() - $_SESSION['session_checkup'] >= 1)
if(time() - $_SESSION['session_checkup'] > 30)
{
$_SESSION['destroyed'] = true;
session_regenerate_id();
Expand Down

0 comments on commit 73ea36f

Please sign in to comment.