mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 22:35:55 +00:00
prefs: fix user plugins shown by incorrect criteria
This commit is contained in:
@@ -947,7 +947,7 @@ class Pref_Prefs extends Handler_Protected {
|
|||||||
foreach ($tmppluginhost->get_plugins() as $name => $plugin) {
|
foreach ($tmppluginhost->get_plugins() as $name => $plugin) {
|
||||||
$about = $plugin->about();
|
$about = $plugin->about();
|
||||||
|
|
||||||
if ($about[3] ?? true) {
|
if (empty($about[3]) || $about[3] == false) {
|
||||||
|
|
||||||
$checked = "";
|
$checked = "";
|
||||||
$disabled = "";
|
$disabled = "";
|
||||||
|
|||||||
Reference in New Issue
Block a user