mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-12 07:11:42 +09:00
issue 425: Fixed a bug when admin calls doCallModuleAction() javascript function
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9528 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
d09ce9b95c
commit
2c585c32c0
3 changed files with 11 additions and 7 deletions
|
|
@ -755,9 +755,11 @@ function setFixedPopupSize() {
|
|||
* @brief 추천/비추천,스크랩,신고기능등 특정 srl에 대한 특정 module/action을 호출하는 함수
|
||||
**/
|
||||
function doCallModuleAction(module, action, target_srl) {
|
||||
var params = new Array();
|
||||
params['target_srl'] = target_srl;
|
||||
params['cur_mid'] = current_mid;
|
||||
var params = {
|
||||
target_srl : target_srl,
|
||||
cur_mid : current_mid,
|
||||
mid : current_mid
|
||||
};
|
||||
exec_xml(module, action, params, completeCallModuleAction);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue