Getting a white screen of death, so decided to remote debug an application that I suspect is instantiating an object using a now unsupported method:
$type['content_object'] = new $type['handler_class']();
Is this still legitimate?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Assuming
$type['handler_class']is a string containing the name of a class, then it’s fine, according to the manual: