Skip to content

Commit

Permalink
Merge pull request #5048 from Jimmi08/patch-12
Browse files Browse the repository at this point in the history
Fixes #4474 Admin-UI checkboxes with filter and batch.
  • Loading branch information
CaMer0n authored Aug 16, 2023
2 parents 4eafc42 + 724ee1b commit 0b6b28b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions e107_handlers/admin_ui.php
Original file line number Diff line number Diff line change
Expand Up @@ -8211,6 +8211,15 @@ public function renderBatchFilter($type='batch', $selected = '') // Common funct

case 'checkboxes':
case 'comma':

if (!empty($parms['optArray']))
{
$fopts = $parms;
$parms = $fopts['optArray'];
unset($fopts['optArray']);
$parms['__options'] = $fopts;
}

// TODO lan
if(!isset($parms['__options']))
{
Expand Down

0 comments on commit 0b6b28b

Please sign in to comment.