diff --git a/system/Register.php b/system/Register.php
index d6a7c26..be0f0e2 100644
--- a/system/Register.php
+++ b/system/Register.php
@@ -72,7 +72,7 @@ if(!empty($regcode_info['u_group'])){
}
//读取用户组信息,如果用户组不存在则设为默认用户组
-if($UserGroup != 'default'){
+if(!in_array($UserGroup,['default','root','visitor'])){
$Group = get_db('user_group','*',['code' => $UserGroup]);
if(empty( $Group )){
$UserGroup = 'default';
diff --git a/system/api.php b/system/api.php
index 11afa84..5794d72 100644
--- a/system/api.php
+++ b/system/api.php
@@ -1132,7 +1132,10 @@ function read_theme(){
msgA(['code'=>1,'data'=>$themes,'current'=>$current,'referrer'=>($data['referrer'] ?? '')]);
}
function msg_tip(){
- msg(-1,'免费版不支持此功能,购买授权版
点击此处前往购买页面');
+ if(is_subscribe()){
+ msg(-1,'请前往概要页面更新系统,未提示更新则尝试刷新页面
更新后即可解锁全部功能,如有疑问请联系客服');
+ }
+ msg(-1,'免费版不支持此功能
点击此处前往购买页面');
}
//主题下载/更新/删除
diff --git a/system/version.txt b/system/version.txt
index a4bd2ef..e65ab03 100644
--- a/system/version.txt
+++ b/system/version.txt
@@ -1 +1 @@
-v2.1.05-20231106
\ No newline at end of file
+v2.1.06-20231113
\ No newline at end of file
diff --git a/templates/admin/index.php b/templates/admin/index.php
index cbc3808..423588c 100644
--- a/templates/admin/index.php
+++ b/templates/admin/index.php
@@ -35,6 +35,7 @@