Преглед изворни кода

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

娄底高职分支
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


Loading…
Откажи
Сачувај