mirror of
https://github.com/itflow-org/itflow
synced 2026-03-20 04:34:51 +00:00
Fix issue clients listing being broken with MySQL server due to not specifiying all non aggregate columns be in the GROUP BY Field, this was not an issue with mariaDB
This commit is contained in:
@@ -1,5 +1,3 @@
|
||||
|
||||
|
||||
var checkboxes = document.querySelectorAll('form input[type="checkbox"]');
|
||||
var selectedCount = document.getElementById("selectedCount");
|
||||
|
||||
@@ -25,9 +23,7 @@ function updateSelectedCount() {
|
||||
}
|
||||
|
||||
function checkAll(source) {
|
||||
|
||||
for (var i = 0; i < checkboxes.length; i++) {
|
||||
checkboxes[i].checked = source.checked;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user