1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 20:58:30 +01:00

fix for type checkboxes and filtering #4474

FIX #4474
This commit is contained in:
Jimako 2023-07-28 20:29:29 +02:00 committed by GitHub
parent 95296d11f2
commit 724ee1be06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8211,6 +8211,15 @@ class e_admin_form_ui extends e_form
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']))
{