Page 1 of 1

pisearch: warning?

Posted: Sat May 27, 2006 4:30 pm
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

Re: pisearch: warning?

Posted: Sat May 27, 2006 5:31 pm
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.

Re: pisearch: warning?

Posted: Sat May 27, 2006 5:35 pm
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/

Re: pisearch: warning?

Posted: Sat May 27, 2006 10:13 pm
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