Commit c0ec3f3b authored by Taddeus Kroes's avatar Taddeus Kroes

Removed deprecated call-by-reference operator.

parent 3d8938db
......@@ -63,7 +63,7 @@ class pQueryArray extends pQuery {
$function = 'array_'.$method;
if( function_exists($function) ) {
array_unshift($args, &$this->variable);
array_unshift($args, $this->variable);
return call_user_func_array($function, $args);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment