From c89f2a24996d44ad36b415f904db3e95568acf46 Mon Sep 17 00:00:00 2001 From: Edsel Lopez Date: Tue, 2 Jun 2020 10:55:49 +0530 Subject: [PATCH] Fixed false condition --- templates/CRM/Contribute/Form/Contribution.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/CRM/Contribute/Form/Contribution.tpl b/templates/CRM/Contribute/Form/Contribution.tpl index c3aedfc102..0df23f41bd 100644 --- a/templates/CRM/Contribute/Form/Contribution.tpl +++ b/templates/CRM/Contribute/Form/Contribution.tpl @@ -556,7 +556,7 @@ cj ('#is_recur').click( function( ) { showStartDate( ); function showStartDate( ) { - if (cj('#is_recur').is(':checked')) { + if (!cj('#is_recur').is(':checked')) { cj('#start_date').hide( ); } else { -- 2.25.1