Needs review
Project:
Invite Discount
Version:
6.x-1.2-beta1
Component:
Code
Priority:
Critical
Category:
Bug report
Reporter:
Created:
27 Aug 2009 at 20:00 UTC
Updated:
1 Apr 2010 at 07:58 UTC
Jump to comment: Most recent
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
Comment #1
Anonymous (not verified) commentedComment #2
thisisnotrealpeople commentedI 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.
Comment #3
Anonymous (not verified) commentedI will work on this after finishing my freelance works sorry. But you are welcome to submit patches.
Comment #4
anil614sagar commented+1 subscrbing
Comment #5
jhack31 commentedYeah, this is a pretty big issue that I am encountering as well.
Comment #6
jerome legendrehi,
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;
Comment #7
Anonymous (not verified) commented