Make WordPress Core

Ticket #51629: 51629.patch

File 51629.patch, 541 bytes (added by ayeshrajans, 4 years ago)
  • src/wp-includes/SimplePie/Registry.php

    diff --git a/src/wp-includes/SimplePie/Registry.php b/src/wp-includes/SimplePie/Registry.php
    index bf3baf1793..48ab8ecc29 100644
    a b public function &call($type, $method, $parameters = array()) 
    211211                                        // Cache::create() methods
    212212                                        if ($method === 'get_handler')
    213213                                        {
    214                                                 $result = @call_user_func_array(array($class, 'create'), $parameters);
    215                                                 return $result;
     214                                                $class = 'SimplePie_Cache';
    216215                                        }
    217216                                        break;
    218217                        }