...
|
...
|
@@ -67,14 +67,14 @@ class PublicController extends AdminBaseController |
|
|
$this->error('非法登录!', cmf_get_root() . '/');
|
|
|
}
|
|
|
|
|
|
$captcha = $this->request->param('captcha');
|
|
|
if (empty($captcha)) {
|
|
|
$this->error(lang('CAPTCHA_REQUIRED'));
|
|
|
}
|
|
|
//验证码
|
|
|
if (!cmf_captcha_check($captcha)) {
|
|
|
$this->error(lang('CAPTCHA_NOT_RIGHT'));
|
|
|
}
|
|
|
// $captcha = $this->request->param('captcha');
|
|
|
// if (empty($captcha)) {
|
|
|
// $this->error(lang('CAPTCHA_REQUIRED'));
|
|
|
// }
|
|
|
// //验证码
|
|
|
// if (!cmf_captcha_check($captcha)) {
|
|
|
// $this->error(lang('CAPTCHA_NOT_RIGHT'));
|
|
|
// }
|
|
|
|
|
|
$name = $this->request->param("username");
|
|
|
if (empty($name)) {
|
...
|
...
|
|