현재접속자에 global 변수가 선언되지 않아 나오던 오류 수정

This commit is contained in:
whitedot
2013-05-08 09:37:18 +09:00
parent 0711e398e0
commit bcf77928f1

View File

@ -1933,7 +1933,7 @@ if (!function_exists('file_put_contents')) {
// HTML 마지막 처리
function html_end()
{
global $g4;
global $config, $g4, $member;
// 현재접속자 처리
$tmp_sql = " select count(*) as cnt from {$g4['login_table']} where lo_ip = '{$_SERVER['REMOTE_ADDR']}' ";