mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
attempt to fix #2943
https://github.com/RSS-Bridge/rss-bridge/issues/2943
This commit is contained in:
parent
c0b6ccfea6
commit
9f1a66e48d
@ -130,6 +130,28 @@ class DisplayAction implements ActionInterface
|
||||
}
|
||||
} else {
|
||||
try {
|
||||
$params = $bridge->getParameters();
|
||||
foreach ($params['global']??[] as $input => $values) {
|
||||
if (
|
||||
isset($values['defaultValue']) &&
|
||||
$values['defaultValue'] === 'checked'
|
||||
) {
|
||||
if (!isset($request[$input])) {
|
||||
$request[$input] = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
foreach ($params[$request['context']] as $input => $values) {
|
||||
if (
|
||||
isset($values['defaultValue']) &&
|
||||
$values['defaultValue'] === 'checked'
|
||||
) {
|
||||
if (!isset($request[$input])) {
|
||||
$request[$input] = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$bridge->setDatas($bridge_params);
|
||||
$bridge->collectData();
|
||||
$items = $bridge->getItems();
|
||||
|
Loading…
Reference in New Issue
Block a user