Fungsionalitas yang sudah usang: stripos ()

// if (strpos($class, $suffix) === FALSE)
replace with this
if ($suffix && strpos($class, $suffix) === FALSE)
Colorful Corncrake