Explorar o código

Removed deprecated call-by-reference operator.

Taddeus Kroes %!s(int64=13) %!d(string=hai) anos
pai
achega
c0ec3f3b76
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      pquery.array.php

+ 1 - 1
pquery.array.php

@@ -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);
 		}