@@ -, +, @@ flag name => If you try to enable it, it just appears as disabled just the same => enable / disable action works again --- koha-tmpl/intranet-tmpl/prog/en/modules/plugins/plugins-home.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/plugins/plugins-home.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/plugins/plugins-home.tt @@ -79,7 +79,7 @@ [% plugin.metadata.name | html %] - [% IF ( plugin.enabled ) %] + [% IF ( plugin.is_enabled ) %] ENABLED [% ELSE %] DISABLED @@ -131,7 +131,7 @@ [% END %] [% IF ( CAN_user_plugins_manage ) %]
  • Uninstall
  • - [% IF ( plugin.enabled ) %] + [% IF ( plugin.is_enabled ) %]
  • Disable
  • [% ELSE %]
  • Enable
  • --