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
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

alakon - February 19, 2008 - 00:10

Have the same problem.

#2

alakon - February 19, 2008 - 00:33

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

4vinoth - February 24, 2008 - 21:14
Version:5.x-4.1-alpha10» 5.x-4.0-alpha11

Same Problem here.................

#4

4vinoth - February 24, 2008 - 21:25

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

 
 

Drupal is a registered trademark of Dries Buytaert.