From 009990b0c0f06520a4804765a600edf779a689f8 Mon Sep 17 00:00:00 2001 From: zeripath Date: Tue, 3 Mar 2020 08:00:36 +0000 Subject: [PATCH] Remove unnecessary parentheses in template (#10583) Fix #10552 Co-authored-by: Lauris BH --- templates/repo/wiki/view.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/repo/wiki/view.tmpl b/templates/repo/wiki/view.tmpl index f160deedb..26ed049e6 100644 --- a/templates/repo/wiki/view.tmpl +++ b/templates/repo/wiki/view.tmpl @@ -45,7 +45,7 @@ {{else if and (not $.DisableSSH) (or $.IsSigned $.ExposeAnonSSH)}} {{end}} - {{if or ((not $.DisableHTTP) (and (not $.DisableSSH) (or $.IsSigned $.ExposeAnonSSH)))}} + {{if or (not $.DisableHTTP) (and (not $.DisableSSH) (or $.IsSigned $.ExposeAnonSSH))}}