Changeset 860:e6db669b069f for admin/js
- Timestamp:
- 08/02/12 23:08:21 (13 years ago)
- Branch:
- default
- Children:
- 861:3e2e678fef61, 1022:6c73aaf901f8
- Location:
- admin/js
- Files:
-
- 1 added
- 2 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/js/_users.js
r548 r860 4 4 }); 5 5 $('#form-users').submit(function() { 6 var action = $(this).find('select[name=" dispatch_action"]').val();6 var action = $(this).find('select[name="action"]').val(); 7 7 var user_ids = new Array(); 8 8 var nb_posts = new Array(); … … 10 10 var msg_cannot_delete = false; 11 11 12 $(this).find('input[name="user _id[]"]').each(function() {12 $(this).find('input[name="users[]"]').each(function() { 13 13 user_ids.push(this); 14 14 }); … … 41 41 42 42 if (action == 'deleteuser') { 43 return window.confirm(dotclear.msg.confirm_delete_user.replace('%s',$('input[name="user _id[]"]:checked').size()));43 return window.confirm(dotclear.msg.confirm_delete_user.replace('%s',$('input[name="users[]"]:checked').size())); 44 44 } 45 45
Note: See TracChangeset
for help on using the changeset viewer.