diff --git a/composer.lock b/composer.lock index bbba82195..e249d3222 100644 --- a/composer.lock +++ b/composer.lock @@ -783,12 +783,12 @@ "source": { "type": "git", "url": "https://github.com/zoujingli/ThinkLibrary.git", - "reference": "8d5bb74a4956debf5a37fa1e04d81723910cb889" + "reference": "ba4fe10a27cff9fb5bbd2a4673e0c65fb3040e62" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/8d5bb74a4956debf5a37fa1e04d81723910cb889", - "reference": "8d5bb74a4956debf5a37fa1e04d81723910cb889", + "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/ba4fe10a27cff9fb5bbd2a4673e0c65fb3040e62", + "reference": "ba4fe10a27cff9fb5bbd2a4673e0c65fb3040e62", "shasum": "", "mirrors": [ { @@ -832,7 +832,7 @@ ], "description": "ThinkPHP v6.0 Development Library", "homepage": "http://framework.thinkadmin.top", - "time": "2019-11-28T09:07:59+00:00" + "time": "2019-11-29T01:31:35+00:00" } ], "packages-dev": [], diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 84aad7847..44fa190b5 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -805,12 +805,12 @@ "source": { "type": "git", "url": "https://github.com/zoujingli/ThinkLibrary.git", - "reference": "ceaf13318bc180c168f3a993018d5bf634848a0a" + "reference": "ba4fe10a27cff9fb5bbd2a4673e0c65fb3040e62" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/ceaf13318bc180c168f3a993018d5bf634848a0a", - "reference": "ceaf13318bc180c168f3a993018d5bf634848a0a", + "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/ba4fe10a27cff9fb5bbd2a4673e0c65fb3040e62", + "reference": "ba4fe10a27cff9fb5bbd2a4673e0c65fb3040e62", "shasum": "", "mirrors": [ { @@ -826,7 +826,7 @@ "ext-json": "*", "topthink/framework": "^6.0" }, - "time": "2019-11-28T10:18:05+00:00", + "time": "2019-11-29T01:31:35+00:00", "type": "library", "extra": { "think": { diff --git a/vendor/services.php b/vendor/services.php index f1fb1925e..477fb1e0f 100644 --- a/vendor/services.php +++ b/vendor/services.php @@ -1,5 +1,5 @@ 'think\\app\\Service', diff --git a/vendor/zoujingli/think-library/src/service/AdminService.php b/vendor/zoujingli/think-library/src/service/AdminService.php index bd8813d5a..46556cca9 100644 --- a/vendor/zoujingli/think-library/src/service/AdminService.php +++ b/vendor/zoujingli/think-library/src/service/AdminService.php @@ -96,7 +96,7 @@ class AdminService extends Service if (($uid = $this->app->session->get('user.id'))) { $user = $this->app->db->name('SystemUser')->where(['id' => $uid])->find(); if (($aids = $user['authorize'])) { - $where = [['status', 'eq', '1'], ['id', 'in', explode(',', $aids)]]; + $where = [['status', '=', '1'], ['id', 'in', explode(',', $aids)]]; $subsql = $this->app->db->name('SystemAuth')->field('id')->where($where)->buildSql(); $user['nodes'] = array_unique($this->app->db->name('SystemAuthNode')->whereRaw("auth in {$subsql}")->column('node')); $this->app->session->set('user', $user); diff --git a/vendor/zoujingli/think-library/src/service/SystemService.php b/vendor/zoujingli/think-library/src/service/SystemService.php index df3ec809c..82cd0b634 100644 --- a/vendor/zoujingli/think-library/src/service/SystemService.php +++ b/vendor/zoujingli/think-library/src/service/SystemService.php @@ -177,7 +177,7 @@ class SystemService extends Service public function putDebug($data, $new = false, $file = null) { if (is_null($file)) $file = $this->app->getRuntimePath() . date('Ymd') . '.txt'; - $str = (is_string($data) ? $data : (is_array($data) || is_object($data)) ? print_r($data, true) : var_export($data, true)) . PHP_EOL; + $str = (is_string($data) ? $data : ((is_array($data) || is_object($data)) ? print_r($data, true) : var_export($data, true))) . PHP_EOL; $new ? file_put_contents($file, $str) : file_put_contents($file, $str, FILE_APPEND); }