浏览代码

改阳光平台图形验证码大小写不区分

娄底高职分支
liangkun 1年前
父节点
当前提交
f070a4b94e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/SunshineEducationApi.cs

+ 1
- 1
Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/SunshineEducationApi.cs 查看文件

@@ -60,7 +60,7 @@ namespace Learun.Application.WebApi
MobileVerify mobileVerify = this.GetReqData<MobileVerify>();
var code = redisCache.Read<string>("sunshineimgvcode_" + mobileVerify.pagecode);
LogEntity logEntity = null;
if (!string.IsNullOrEmpty(code) && code == mobileVerify.verifycode)
if (!string.IsNullOrEmpty(code) && code.ToLower() == mobileVerify.verifycode.ToLower())
{
//发送短信
try


正在加载...
取消
保存