It is being used in …
PHP Warning: unserialize() [function.unserialize]: Function spl_autoload_call()Function spl_autoload_call() hasn’t defined the class it was called for in /home/flc/libraries/joomla/cache/controller/callback.php on line 118
Here’s the callback.php code snipet:
if ($data !== false)
{
$cached = unserialize(trim($data));
$coptions['mergehead'] = isset($woptions['mergehead']) ? $woptions['mergehead'] : 0;
$output = ($wrkarounds == false) ? $cached['output'] : JCache::getWorkarounds($cached['output'], $coptions);
$result = $cached['result'];
if ($locktest->locked == true)
{
$this->cache->unlock($id);
}
}
else
{
if (!is_array($args))
{
$Args = !empty($args) ? array(&$args) : array();
}
else
{
$Args = &$args;
}
if ($locktest->locked == false)
{
$locktest = $this->cache->lock($id);
}
if (isset($woptions['modulemode']))
{
$document = JFactory::getDocument();
$coptions['modulemode'] = $woptions['modulemode'];
$coptions['headerbefore'] = $document->getHeadData();
}
else
{
$coptions['modulemode'] = 0;
}