From 55c676d6a5a028db04a8ef5ee5216f11542101a1 Mon Sep 17 00:00:00 2001 From: joyqi Date: Fri, 15 Sep 2017 01:44:43 +0800 Subject: [PATCH] fix autoload --- var/Typecho/Common.php | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/var/Typecho/Common.php b/var/Typecho/Common.php index 2579fc07..02f7b8e1 100644 --- a/var/Typecho/Common.php +++ b/var/Typecho/Common.php @@ -202,13 +202,7 @@ class Typecho_Common public static function init() { /** 设置自动载入函数 */ - if (function_exists('spl_autoload_register')) { - spl_autoload_register(array('Typecho_Common', '__autoLoad')); - } else { - function __autoLoad($className) { - Typecho_Common::__autoLoad($className); - } - } + spl_autoload_register(array('Typecho_Common', '__autoLoad')); /** 兼容php6 */ if (function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc()) {