We are aware of a potentially service impacting issue. Learn more

Old Joomla and PHP 5.3.x Warning: Parameter 3 to showItem() expected to be a reference ... Print

  • 4

The solution is quite easy, but you really shoud considering upgrading your Joomla to a stable release. 

Modify following in the /includes/Cache/Lite/Function.php: 

1. 
from:  $result = call_user_func_array(array($class, $method), $arguments); 
to:      $result = call_user_func_array(array($class, $method), &$arguments);

2. 
from:  $result = call_user_func_array(array($$object_123456789, $method), $arguments);
to:      $result = call_user_func_array(array($$object_123456789, $method), &$arguments);

3. 
from:  $result = call_user_func_array($target, $arguments);
to:      $result = call_user_func_array($target, &$arguments);


Was this answer helpful?

« Back