mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-03 09:14:48 +09:00
현재 접속자 추출시 쿼리가 잘못 작성되는 오류 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4294 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
b42d75e650
commit
5c741cde1b
3 changed files with 5 additions and 4 deletions
|
|
@ -26,7 +26,7 @@
|
|||
$oModuleController->insertActionForward('session', 'view', 'dispSessionAdminIndex');
|
||||
|
||||
$oDB = &DB::getInstance();
|
||||
$oDB->addIndex("session","idx_session_update_mid", array("last_update","cur_mid"));
|
||||
$oDB->addIndex("session","idx_session_update_mid", array("member_srl","last_update","cur_mid"));
|
||||
|
||||
return new Object();
|
||||
}
|
||||
|
|
@ -67,7 +67,7 @@
|
|||
}
|
||||
|
||||
if(!$oDB->isIndexExists("session","idx_session_update_mid"))
|
||||
$oDB->addIndex("session","idx_session_update_mid", array("last_update","cur_mid"));
|
||||
$oDB->addIndex("session","idx_session_update_mid", array("member_srl","last_update","cur_mid"));
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue