Merge branch 'rhymix:master' into master

This commit is contained in:
Lastorder 2025-05-26 06:58:12 +09:00 committed by GitHub
commit cb1fd188ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
111 changed files with 4286 additions and 5469 deletions

View file

@ -1,16 +1,17 @@
function doCancelDeclare() {
var comment_srl = new Array();
jQuery('#fo_list input[name="cart[]"]:checked').each(function() {
comment_srl[comment_srl.length] = jQuery(this).val();
$('#fo_list input[name="cart[]"]:checked').each(function() {
comment_srl.push($(this).val());
});
if (comment_srl.length < 1) {
return;
}
if(comment_srl.length<1) return;
var params = new Array();
params['comment_srl'] = comment_srl.join(',');
exec_xml('comment','procCommentAdminCancelDeclare', params, function() { location.reload(); });
var params = { comment_srl: comment_srl.join(',') };
Rhymix.ajax('comment.procCommentAdminCancelDeclare', params, function() {
location.reload();
});
}
function insertSelectedModule(id, module_srl, mid, browser_title) {
@ -26,7 +27,7 @@ function getCommentList()
var commentListTable = jQuery('#commentListTable');
var cartList = [];
commentListTable.find(':checkbox[name=cart]').each(function(){
if(this.checked) cartList.push(this.value);
if(this.checked) cartList.push(this.value);
});
var params = new Array();