17/1/13

Warning: Parameter 1 to JHTMLGrid::access() expected to be a reference…


Warning: Parameter 1 to JHTMLGrid::access() expected to be a reference…

Mở tập tin html.php: 

Tìm:
$args = func_get_args(); 
array_shift ($args);

Thay đổi để:


$temp = func_get_args(); 

array_shift($temp); 
$args = array(); 
foreach ($temp as $k => $v)
 { 
$args[] = &$temp[$k]; 

Bài đăng phổ biến