Skip to content

Commit

Permalink
send current query params when deleting all visible
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.techno-weenie.net/projects/plugins/exception_logger@1278 567b1171-46fb-0310-a4c9-b4bef9110e78
  • Loading branch information
technoweenie committed Jun 26, 2006
1 parent 82dd3b1 commit d2b1087
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/exception_logger.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ExceptionLogger = {
},

deleteAll: function() {
return $$('tr.exception').collect(function(tr) { return tr.getAttribute('id').gsub(/^\w+-/, ''); }).toQueryString('ids');
return Form.serialize('query-form') + '&' + $$('tr.exception').collect(function(tr) { return tr.getAttribute('id').gsub(/^\w+-/, ''); }).toQueryString('ids');
}
}

Expand Down

0 comments on commit d2b1087

Please sign in to comment.