From efaa5f3985b4b335708a3cec1919bef9cd01c3fe Mon Sep 17 00:00:00 2001 From: Martin Renvoize <martin.renvoize@ptfs-europe.com> 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 <martin.renvoize@ptfs-europe.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: David Cook <dcook@prosentient.com.au> --- .../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 98f71298a3..aefd39d1e2 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 @@ -90,7 +90,9 @@ <th>Description</th> <th>Organization</th> <th>Latest version</th> + [% IF ( enable_browser_upload ) %] <th> </th> + [% END %] </tr> </thead> @@ -100,7 +102,9 @@ <td>[% sr.result.description | html %]</td> <td>[% sr.repo.name | html %]</td> <td>[% sr.result.tag_name | html %]</td> + [% IF ( enable_browser_upload ) %] <td><a class="btn btn-default btn-sm btn-install-plugin" href="/cgi-bin/koha/plugins/plugins-upload.pl?op=Upload&uploadfile=[% sr.result.install_name | uri %]&uploadlocation=[% sr.result.install_url | uri %]"><i class="fa fa-download"></i> Install</a></td> + [% END %] </tr> [% END %] </table> -- 2.42.0