After transferring my website to a new server I am receiving the following error:

warning: Parameter 2 to invite_form_submit() expected to be a reference, value given in /home/gillz/public_html/includes/module.inc on line 462.

Any ideas on what might be causing this??

Comments

brunorios1’s picture

same here.

brunorios1’s picture

Priority: Normal » Major
verynic’s picture

same to me

3emad’s picture

A quick hack, requestinvitation.module @ line 277,replace the invoke "form submit" with a direct function call:

      //module_invoke('invite', 'form_submit', $form, $edit); 
      invite_form_submit($form, &$edit);

hope it helps you guys.