Skip to content

Commit

Permalink
Merge pull request #13734 from eileenmcnaughton/mem
Browse files Browse the repository at this point in the history
dev/membership#10 fix incorrect validation error saying Start date must be the same or later than Member since
  • Loading branch information
eileenmcnaughton authored Mar 1, 2019
2 parents 91f4ec9 + 47e1cfc commit f33592e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Member/Form/Membership.php
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ public function setDefaultValues() {

//setting default join date if there is no join date
if (empty($defaults['join_date'])) {
$defaults['join_date'] = date('Y-m-d H:i:s');
$defaults['join_date'] = date('Y-m-d');
}

if (!empty($defaults['membership_end_date'])) {
Expand Down

0 comments on commit f33592e

Please sign in to comment.