From 3393710a2a2591d7aa4db2e19b60dc76552841da Mon Sep 17 00:00:00 2001 From: 7IN0SAN9 Date: Wed, 16 Dec 2015 22:19:07 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=9B=BE=E5=BD=A2=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- library/org/image.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/org/image.php b/library/org/image.php index b742b5bb..18d95030 100644 --- a/library/org/image.php +++ b/library/org/image.php @@ -54,7 +54,7 @@ class Image public static function init($type = 'Gd', $imgname = null) { /* 引入处理库,实例化图片处理对象 */ - $class = '\\think\\image\\driver\\' . strtolower($type); + $class = '\\org\\image\\driver\\' . strtolower($type); self::$im = new $class($imgname); return self::$im; }