mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
Fix line break after widget name broke legacy option parser
This commit is contained in:
parent
446b51d74a
commit
5cfa26bd7b
@ -108,7 +108,7 @@ function send_template()
|
||||
'nextmatch-accountfilter' => 'empty_label,account_type,ignore',
|
||||
);
|
||||
// prefer more specific type-subtype over just type
|
||||
$names = $legacy_options[$matches[1] . $matches[2]] ?? $legacy_options[$matches[1]] ?? null;
|
||||
$names = $legacy_options[$matches[1] . $matches[2]] ?? $legacy_options[trim($matches[1])] ?? null;
|
||||
if (isset($names))
|
||||
{
|
||||
$names = explode(',', $names);
|
||||
|
Loading…
Reference in New Issue
Block a user