Procházet zdrojové kódy

Removed deprecated call-by-reference operator.

Taddeus Kroes před 13 roky
rodič
revize
c0ec3f3b76
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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);
 		}