From 4a25bcd414a3afc50f3aefc602ce5b5499144127 Mon Sep 17 00:00:00 2001 From: Cameron Date: Fri, 15 May 2020 11:31:22 -0700 Subject: [PATCH] Admin-UI: Fixed #3936 - Boolean 'invert' was failing with a fatal error in PHP7. --- e107_handlers/admin_ui.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_handlers/admin_ui.php b/e107_handlers/admin_ui.php index 643eb31fc..5e5bffdd0 100755 --- a/e107_handlers/admin_ui.php +++ b/e107_handlers/admin_ui.php @@ -5474,7 +5474,7 @@ class e_admin_ui extends e_admin_controller_ui * @param array $selected * @return void */ - protected function handleListBoolreverseBatch($selected, $field, $value) + protected function handleListBoolreverseBatch($selected, $field) { $tree = $this->getTreeModel(); $cnt = $tree->batchUpdate($field, "1-{$field}", $selected, null, false);