示例#1
0
 }
 $captcha = '';
 // Show captcha image for guests if enabled and only if we have to do
 if ($mybb->settings['captchaimage'] && $do_captcha == true) {
     require_once MYBB_ROOT . 'inc/class_captcha.php';
     $login_captcha = new captcha(false, "post_captcha");
     if ($login_captcha->type == 1) {
         if (!$correct) {
             $login_captcha->build_captcha();
         } else {
             $captcha = $login_captcha->build_hidden_captcha();
         }
     } elseif ($login_captcha->type == 2 || $login_captcha->type == 4) {
         $login_captcha->build_recaptcha();
     } elseif ($login_captcha->type == 3) {
         $login_captcha->build_ayah();
     }
     if ($login_captcha->html) {
         $captcha = $login_captcha->html;
     }
 }
 $username = "";
 $password = "";
 if (isset($mybb->input['username']) && $mybb->request_method == "post") {
     $username = htmlspecialchars_uni($mybb->get_input('username'));
 }
 if (isset($mybb->input['password']) && $mybb->request_method == "post") {
     $password = htmlspecialchars_uni($mybb->get_input('password'));
 }
 if (!empty($errors)) {
     $mybb->input['action'] = "login";
示例#2
0
 if ((!empty($mybb->input['previewpost']) || $hide_captcha == true) && $post_captcha->type == 1) {
     // If previewing a post - check their current captcha input - if correct, hide the captcha input area
     // ... but only if it's a default one, reCAPTCHA and Are You a Human must be filled in every time due to draconian limits
     if ($post_captcha->validate_captcha() == true) {
         $correct = true;
         // Generate a hidden list of items for our captcha
         $captcha = $post_captcha->build_hidden_captcha();
     }
 }
 if (!$correct) {
     if ($post_captcha->type == 1) {
         $post_captcha->build_captcha();
     } elseif ($post_captcha->type == 2 || $post_captcha->type == 4) {
         $post_captcha->build_recaptcha();
     } elseif ($post_captcha->type == 3) {
         $post_captcha->build_ayah();
     }
     if ($post_captcha->html) {
         $captcha = $post_captcha->html;
     }
 } else {
     if ($correct && ($post_captcha->type == 2 || $post_captcha->type == 4)) {
         $post_captcha->build_recaptcha();
         if ($post_captcha->html) {
             $captcha = $post_captcha->html;
         }
     } else {
         if ($correct && $post_captcha->type == 3) {
             $post_captcha->build_ayah();
             if ($post_captcha->html) {
                 $captcha = $post_captcha->html;