#17829374 : Added a feature for Point +, - (contributed by SMaker)

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5809 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
haneul 2009-03-09 10:36:29 +00:00
parent 02b8e5684f
commit 7fe1af11a6
4 changed files with 43 additions and 8 deletions

View file

@ -140,11 +140,12 @@
* @brief 회원 포인트 변경
**/
function procPointAdminUpdatePoint() {
$action = Context::get('action');
$member_srl = Context::get('member_srl');
$point = Context::get('point');
$point = Context::get('point');
$oPointController = &getController('point');
return $oPointController->setPoint($member_srl, (int)$point);
return $oPointController->setPoint($member_srl, (int)$point, $action);
}
/**