I upgraded to the nov. 11 dev. and I am receiving these errors:

Deprecated function: Call-time pass-by-reference has been deprecated in drupal_load() (line 1105 of C:\...\includes\bootstrap.inc).
Deprecated function: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of rules_invoke_event(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file in drupal_load() (line 1105 of C:\...\includes\bootstrap.inc).

BR, Max

Comments

maxilein’s picture

It is connected to the Rules Bonus: Miscellaneous. When I deactivate that the message is gone.

PedroMiguel’s picture

Same happen to me when activate the rules bonus views

nikit’s picture

For Rules Bonus Views : rb_views.module
rules_invoke_event('rb_views_event_view_execute', &$view_representation);
replace to
rules_invoke_event('rb_views_event_view_execute', $view_representation);
...
And all function CALLS that contain &$views as argument should be replaced to $views

tabvn’s picture

Deprecated function: Call-time pass-by-reference has been deprecated in drupal_load() (line 1105 of includes/bootstrap.inc).

itangalo’s picture

Thanks for posting on this. Adding it to my list of low-hanging-fruit, so a fix should be done rather soon. (Can't promise to do it within a week, though.)

itangalo’s picture

Status: Active » Fixed

Fixed and pushed.

Feels strange to remove all the pass-by-reference – are you sure none of them can be kept?

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.