Explorar el Código

Removed deprecated call-by-reference operator.

Taddeus Kroes hace 13 años
padre
commit
c0ec3f3b76
Se han modificado 1 ficheros con 1 adiciones y 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);
 		}