Plugin Directory

Changeset 793951


Ignore:
Timestamp:
10/26/2013 07:44:29 AM (12 years ago)
Author:
bobbravo2
Message:

fixed die on redirect

File:
1 edited

Legend:

Unmodified
Added
Removed
  • wordpress-by-circle-tree/trunk/includes/class.wp_login_lockdown.php

    r760164 r793951  
    522522        if ( $this->is_ip_blocked() ) {
    523523            wp_redirect(get_bloginfo('url'));
     524            die;
    524525        }
    525526        //Validate captcha
    526527        if ($this->valid_captcha()) {
    527528            $this->reset_failed_logins();
    528             wp_redirect('wp-login.php');           
     529            wp_redirect('wp-login.php');
     530            die;           
    529531        }
    530532       
Note: See TracChangeset for help on using the changeset viewer.