Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue 48: make it next_sched_contribution_date #578

Merged
merged 1 commit into from
Apr 22, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions modules/views/components/civicrm.contribute.inc
Original file line number Diff line number Diff line change
Expand Up @@ -1054,7 +1054,7 @@ function _civicrm_contribute_data(&$data, $enabled) {
),
);
//Recurring Contribution End Date
$data['civicrm_contribution_recur']['next_sched_contribution'] = array(
$data['civicrm_contribution_recur']['next_sched_contribution_date'] = array(
'title' => t('Next Contribution Date'),
'help' => t('The Next Contribution Date.'),
'field' => array(
Expand All @@ -1071,7 +1071,7 @@ function _civicrm_contribute_data(&$data, $enabled) {
);
civicrm_views_add_date_arguments($data['civicrm_contribution_recur'], array(
'title' => 'Recurring Contribution Next Date',
'name' => 'next_sched_contribution',
'name' => 'next_sched_contribution_date',
));
//How many times has the contribution failed
$data['civicrm_contribution_recur']['failure_count'] = array(
Expand Down