Joomla Problem: Warning: Parameter 1 to JHTMLGrid::access() expected to be a reference, value given in… on line 87
Open html.php file:
Find:
$args = func_get_args();
array_shift( $args );
Change to:
$temp = func_get_args();
array_shift( $temp );
$args = array();
foreach ($temp as $k => $v) {
$args[] = &$temp[$k];
}
CHEERS!
Leave a Reply