Skip to content

Commit

Permalink
Merge pull request #12564 from eileenmcnaughton/enotice53
Browse files Browse the repository at this point in the history
dev/core#276 enotice fix
  • Loading branch information
seamuslee001 authored Jul 25, 2018
2 parents be926fa + 20c632a commit 14affe4
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 @@ -947,7 +947,7 @@ private function prepareStatusOverrideValues() {
* the selected override option is not 'until date'.
*/
private function setOverrideDateValue() {
if (!CRM_Member_StatusOverrideTypes::isUntilDate($this->_params['is_override'])) {
if (!CRM_Member_StatusOverrideTypes::isUntilDate(CRM_Utils_Array::value('is_override', $this->_params))) {
$this->_params['status_override_end_date'] = '';
}
}
Expand Down

0 comments on commit 14affe4

Please sign in to comment.