Fix mass edit and mass delete routes. [skip ci]

This commit is contained in:
James Cole
2016-12-10 17:55:47 +01:00
parent bf99d5c299
commit ec3b356f86

View File

@@ -31,7 +31,7 @@ function goToMassEdit() {
var checkedArray = getCheckboxes();
// go to specially crafted URL:
window.location.href = 'transactions/mass-edit/' + checkedArray;
window.location.href = 'transactions/mass/edit/' + checkedArray;
return false;
}
@@ -40,7 +40,7 @@ function goToMassDelete() {
var checkedArray = getCheckboxes();
// go to specially crafted URL:
window.location.href = 'transactions/mass-delete/' + checkedArray;
window.location.href = 'transactions/mass/delete/' + checkedArray;
return false;
}