Fixed false condition
authorEdsel Lopez <edsel.lopez@jmaconsulting.biz>
Tue, 2 Jun 2020 05:25:49 +0000 (10:55 +0530)
committerEdsel Lopez <edsel.lopez@jmaconsulting.biz>
Tue, 2 Jun 2020 05:25:49 +0000 (10:55 +0530)
templates/CRM/Contribute/Form/Contribution.tpl

index c3aedfc102ba37d6c31fa6631f150302f0ed8986..0df23f41bd89addd667a48563990654425edaf8e 100644 (file)
@@ -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 {