From a8f6c7504210fb3a3ab6588419b0e6bcf898013a Mon Sep 17 00:00:00 2001 From: thinkphp Date: Wed, 16 Dec 2015 08:30:42 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3oauth=E7=B1=BB=20=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0public=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- library/org/oauth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/org/oauth.php b/library/org/oauth.php index 0221d9ce..1365bff2 100644 --- a/library/org/oauth.php +++ b/library/org/oauth.php @@ -36,7 +36,7 @@ class Oauth */ public static function connect($type, $options = []) { - $class = 'think\\oauth\\driver\\' . strtolower($type); + $class = '\\org\\oauth\\driver\\' . strtolower($type); self::$handler = new $class($options); return self::$handler; }