Facebook Connect

Connect with Facebook

Nube de Tags

Inicio de sesión

PHP 5.3 compatibility

I use PHP 5.3 and get errors on form submit -

* warning: Parameter 2 to domain_form_alter() expected to be a reference, value given in /home/tornado/data/www/autostan.ispvds.com/includes/common.inc on line 2883.
* warning: Parameter 2 to domain_source_form_alter() expected to be a reference, value given in /home/tornado/data/www/autostan.ispvds.com/includes/common.inc on line 2883.

I found that error is in PHP 5.3 incompatibility. On other site with 5.2 all works fine.

So, I found that to solve this errors the module needs to be pathed like this:

// line: 1690 in domain.module
- function domain_form_alter(&$form, &$form_state, $form_id) {
+ function domain_form_alter(&$form, $form_state, $form_id) {
 
 
fuente : http://drupal.org/node/965546