From 590e9a6f4f8eba430e2762afac7b152b4fa28b1d Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Wed, 22 Jul 2020 09:10:29 +0100 Subject: [PATCH] Bug 25672: (QA follow-up) Hide install after search button If plugin upload is disabled, but there are git repositories listed in the config for plugin searching, then you can search for a plugin and attempt to install it. The install leads to an error page. This patch removes the actions column and install button should the enable_browser_upload option be disabled Signed-off-by: Martin Renvoize --- .../intranet-tmpl/prog/en/modules/plugins/plugins-home.tt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/plugins/plugins-home.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/plugins/plugins-home.tt index dec24c5904..a22e53e6df 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/plugins/plugins-home.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/plugins/plugins-home.tt @@ -69,7 +69,9 @@ Name Description Organization + [% IF ( enable_browser_upload ) %]   + [% END %] @@ -78,7 +80,9 @@ [% sr.result.name | html %] [% sr.result.description | html %] [% sr.repo.name | html %] + [% IF ( enable_browser_upload ) %] Install + [% END %] [% END %] -- 2.20.1