- 修复数据库缓存

v6 v6.0.61
Chaim 4 years ago
parent b99433b71a
commit b60b05c100

@ -89,7 +89,7 @@ class Mysql
->order('id desc')
->whereTime('cache_expire', '>', time())
->find();
return $cache['cache_value'];
return isset($cache['cache_value']) ? $cache['cache_value'] : '';
}
/**

Loading…
Cancel
Save