mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-15 16:57:09 +00:00
Fix mass edit and mass delete routes. [skip ci]
This commit is contained in:
@@ -31,7 +31,7 @@ function goToMassEdit() {
|
|||||||
var checkedArray = getCheckboxes();
|
var checkedArray = getCheckboxes();
|
||||||
|
|
||||||
// go to specially crafted URL:
|
// go to specially crafted URL:
|
||||||
window.location.href = 'transactions/mass-edit/' + checkedArray;
|
window.location.href = 'transactions/mass/edit/' + checkedArray;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -40,7 +40,7 @@ function goToMassDelete() {
|
|||||||
var checkedArray = getCheckboxes();
|
var checkedArray = getCheckboxes();
|
||||||
|
|
||||||
// go to specially crafted URL:
|
// go to specially crafted URL:
|
||||||
window.location.href = 'transactions/mass-delete/' + checkedArray;
|
window.location.href = 'transactions/mass/delete/' + checkedArray;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user