As the title says, I can't save any setting for the Invite Discount module.
It says "configuration saved" but nothing is actually saved.

Using Drupal 6.13, Ubercart 2.0RC6, bunch of other modules.

Comments

Anonymous’s picture

Assigned: Unassigned »
thisisnotrealpeople’s picture

I am encountering this bug as well. Also when I try to activate a discount by inviting someone and then accepting the invitation, the discount does not get created.

Anonymous’s picture

I will work on this after finishing my freelance works sorry. But you are welcome to submit patches.

anil614sagar’s picture

+1 subscrbing

jhack31’s picture

Yeah, this is a pretty big issue that I am encountering as well.

jerome legendre’s picture

hi,
it work if you don't use return system_settings_form($form) in function uc_invite_discount_admin_settings()

uc_invite_discount.module , line 296

change:
return system_settings_form($form);
to:
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Save'),
);
return $form;

Anonymous’s picture

Status: Active » Needs review