From 42c80841c846610be280218d53fcde06b0f0063b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Fri, 6 Dec 2013 09:45:27 +0100 Subject: [change] we now use Full-Text RSS 3.1, thank you so much @fivefilters --- inc/3rdparty/simplepie/SimplePieAutoloader.php | 80 -------------------------- 1 file changed, 80 deletions(-) delete mode 100644 inc/3rdparty/simplepie/SimplePieAutoloader.php (limited to 'inc/3rdparty/simplepie/SimplePieAutoloader.php') diff --git a/inc/3rdparty/simplepie/SimplePieAutoloader.php b/inc/3rdparty/simplepie/SimplePieAutoloader.php deleted file mode 100644 index b2654dc5..00000000 --- a/inc/3rdparty/simplepie/SimplePieAutoloader.php +++ /dev/null @@ -1,80 +0,0 @@ -path = dirname(__FILE__); - } - - /** - * Autoloader. - * - * @param string $class The name of the class to attempt to load. - */ - public function autoload($class) - { - // see if this request should be handled by this autoloader - if (strpos($class, 'SimplePie') !== 0) { - return; - } - - $filename = $this->path . DIRECTORY_SEPARATOR . str_replace('_', DIRECTORY_SEPARATOR, $class) . '.php'; - include $filename; - } -} \ No newline at end of file -- cgit v1.2.3