pisearch: warning?

For questions and problems with the CMS core. This board is NOT for any 3rd party modules, addons, PHP scripts or anything NOT distributed with the CMS made simple package itself.
Locked
firfelin

pisearch: warning?

Post by firfelin »

Hi,

I have installed pisearch module. It works fine, except this strange warning appearing on top of all pages, including admin pages... How can I make it disappear, I just don't understand a word of this warning :P

Thank you

Code: Select all

Warning: Call-time pass-by-reference has been deprecated - argument passed by value; 
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. However, future versions may not support this any longer. in /home/www/27ee611619013e73cca927008210f4a6/web/lab/modules/pisearch/pisearch.module.php on line 642
Piratos

Re: pisearch: warning?

Post by Piratos »

Line 642 is this:

Code: Select all

$this->edit($id,&$params, $return_id);
try

Code: Select all

$this->edit($id,$params, $return_id);
an report please if this works.
Piratos

Re: pisearch: warning?

Post by Piratos »

allow_call_time_pass_reference
Normal this option is set always on, but with your webserver it is off.
Here you can see the module at work:

http://test.wowv.nl/
Last edited by Piratos on Sat May 27, 2006 5:47 pm, edited 1 time in total.
firfelin

Re: pisearch: warning?

Post by firfelin »

Piratos wrote: Line 642 is this:

Code: Select all

$this->edit($id,&$params, $return_id);
try

Code: Select all

$this->edit($id,$params, $return_id);
an report please if this works.

it works perfectly :D Thank you
Locked

Return to “CMSMS Core”