After the installation of Book Manager module, this errors appear:


Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of [runtime function name](). 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 E:\Desktop\Pampa\PAMPA\apache\htdocs\www\BASE\modules\book_manager\book_manager.module on line 594

Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of [runtime function name](). 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 E:\Desktop\Pampa\PAMPA\apache\htdocs\www\BASE\modules\book_manager\book_manager.module on line 610

Can you Hepl me... I need this module... a lot!

Bye!
Dret.

Comments

jgraham’s picture

Status: Active » Fixed
Dret’s picture

Thanks a lot!
;)

dwees’s picture

Status: Fixed » Active

This error is still present. The fix is simple:

Line 610:

  book_outline_form_submit($form, &$form_state);

change to:

Line 610:

  book_outline_form_submit($form, $form_state);

since the function 'book_outline_form_submit' includes $form_state as a 'passed by reference' parameter anyway.

This happens because of a difference of php versions.

dwees’s picture

Version: 6.x-1.0 » 6.x-1.1

Fixing version.

jgraham’s picture

Status: Active » Fixed

Will be in the 1.2 release

Status: Fixed » Closed (fixed)

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