本文及资源最后更新时间 2021-02-13 by sky995
链接SSH:
一键去除
Bash
sed -i "s|if (bind_user == 'True') {|if (bind_user == 'REMOVED') {|g" /www/server/panel/BTPanel/static/js/index.js
一键还原
Bash
sed -i "s|if (bind_user == 'REMOVED') {|if (bind_user == 'True') {|g" /www/server/panel/BTPanel/static/js/index.js
手动修改
Bash
/www/server/panel/BTPanel/static/js/index.js
找到这个文件,搜索
Bash
bind_user
把
JavaScript
if (bind_user == 'True') {
show_force_bind();
}
改成
JavaScript
if (bind_user == 'REMOVED') {
show_force_bind();
}
需要还原就改成上面那个就可以了。