瀏覽代碼

Removed deprecated call-by-reference operator.

Taddeus Kroes 13 年之前
父節點
當前提交
c0ec3f3b76
共有 1 個文件被更改,包括 1 次插入1 次删除
  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);
 		}