Reminder mail does not work for schedules
Village Internet - January 28, 2008 - 21:27
| Project: | e-Commerce |
| Version: | 5.x-4.0-alpha11 |
| Component: | product |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Jump to:
Description
I am trying to add a reminder email to a schedule
Home › Administer › e-Commerce configuration › Schedules
When trying to add a new reminder email, i press 'add reminder' and the next screen....
/admin/ecsettings/schedule/x/reminder/add
...shows no options, just the headers tabs
I am running another version of ecommerce, 5.x-4.x-dev, and do not have this problem on that server.
Thanks for your input.

#1
Have the same problem.
#2
Confirmed this also affects the 5.x-4.x-dev (Feburary 17). I removed the previous version and cleared all the tables manually.
...Are there any 4.x versions this does NOT affect?
#3
Same Problem here.................
#4
Fixed..................
File : modules/ecommerce/contrib/ec_recurring/ec_recurring.module
Hook : ec_recurring_menu
$items[] = array(
'access' => $access,
'callback' => 'drupal_get_form',
'callback arguments' => array('_ec_recurring_reminder_form', $id),
$items[] = array(
'access' => $access,
'callback' => 'drupal_get_form',
'callback arguments' => array('_ec_recurring_reminder_form', $id, $rid),
'file' => 'ec_recurring.inc',
'path' => "admin/ecsettings/schedule/$id/reminder/$rid/edit",
'title' => t('Edit reminder'),
'type' => MENU_CALLBACK,
);
remove one extra '_' underscore specified in the callback arguments..
it should be '_ec_recurring_reminder_form'
Cheers