git-svn-id: http://xe-core.googlecode.com/svn/trunk@174 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-02-23 06:55:45 +00:00
parent 9c81a2ce69
commit 3de7cf9648
18 changed files with 113 additions and 105 deletions

View file

@ -86,11 +86,11 @@
/**
* @brief 모듈의 권한 정보 변경
**/
function updateModuleGrant($module_srl, $grant) {
function updateModuleGrant($module_srl, $grants) {
$oDB = &DB::getInstance();
$args->module_srl = $module_srl;
$args->grant = $grant;
$args->grants = $grants;
$output = $oDB->executeQuery('module.updateModuleGrant', $args);
return $output;
}