Replies: 0
Hello,
Just wanted to make a suggested fix. To prevent deprecated constructor errors in PHP 7, the constructor function name should be changed on line 424.
Currently line 424 is:
function WP_Object_Cache() {
…and it just needs a change to:
function __construct() {
Notes on the deprecated changes from the PHP manual: http://php.net/manual/en/migration70.deprecated.php
Thanks and take care!
– Scott