I got this problem, but I could solve it.
You edit the code file “plugins/head-cleaner/head-cleaner.php” as follow. It’s near line 2895.
(Sorry, my English is not well…)
[original]
foreach ($active_filters as $priority => $filters) {
if (!is_array($filters)) {
continue;
}
foreach ($filters as $filter) {
$function_name = $this->_get_function_name($filter['function']);
if ( $this->function_enabled($function_name) ) {
if (!isset($this->filters[$tag]))
$this->filters[$tag] = array();
$this->filters[$tag][$function_name] = $priority;
}
}
}
[fixed]
foreach ($active_filters as $priority => $filters) {
// Added code from here.
if (!is_array($filters)) {
continue;
}
// over.
foreach ($filters as $filter) {
$function_name = $this->_get_function_name($filter['function']);
if ( $this->function_enabled($function_name) ) {
if (!isset($this->filters[$tag]))
$this->filters[$tag] = array();
$this->filters[$tag][$function_name] = $priority;
}
}
}