欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

修改验证码的默认值为 "请输入验证码!"

shiping1 的头像
修改验证码的默认值为 "请输入验证码!"
在  captcha.module 的大约640行

 $value = $element['#captcha_admin_mode'] ? $captcha_info['solution'] : '';
      $element['captcha_widgets']['captcha_response']['#value'] = $value;

修改为
 $value = $element['#captcha_admin_mode'] ? $captcha_info['solution'] : '请输入验证码!';
      $element['captcha_widgets']['captcha_response']['#value'] = $value;

普通分类: