Plugin Directory

Changeset 499245


Ignore:
Timestamp:
02/02/2012 04:25:40 PM (14 years ago)
Author:
wpsec
Message:

Tagging version 2.2.7 - for is_rtl() fix

Location:
login-lock
Files:
2 edited
9 copied

Legend:

Unmodified
Added
Removed
  • login-lock/tags/2.2.7/loginlock.php

    r497152 r499245  
    33Plugin Name: Login Lock
    44Plugin URI: https://wpsecurity.net/wordpress-security-login-lock/
    5 Version: v2.2.6
     5Version: v2.2.7
    66Author: Mark Edwards / WPSecurity.net
    77Author URI: https://wpsecurity.net
     
    620620        global $error, $is_iphone, $interim_login, $current_site;
    621621
     622        if ( !function_exists( 'login_header' ) ) {
     623
     624            ob_start();
     625            require_once( ABSPATH . '/wp-login.php' );
     626            ob_end_clean();
     627
     628        }
     629
     630        login_header( $title, $message, $wp_error );
     631
     632/*
    622633        add_filter( 'pre_option_blog_public', '__return_zero' );
    623634        add_action( 'login_head', 'noindex' );
     
    666677    ertitle', esc_attr__('Powered by WordPress')); ?>"><?php bloginfo('name'); ?></a></h1>
    667678    <?php   } else { ?>
    668     <div id="login"><h1><a href="<?php echo apply_filters('login_headerurl', network_home_url() ); ?>" title="<?php echo apply_filters('login_headerti
    669     tle', esc_attr($current_site->site_name) ); ?>"><span class="hide"><?php bloginfo('name'); ?></span></a></h1>
     679    <div id="login"><h1><a href="<?php echo apply_filters('login_headerurl', network_home_url() ); ?>" title="<?php echo apply_filters('login_headertitle', esc_attr($current_site->site_name) ); ?>"><span class="hide"><?php bloginfo('name'); ?></span></a></h1>
    670680    <?php   }
    671681
     
    696706                echo '<p class="message">' . apply_filters('login_messages', $messages) . "</p>\n";
    697707        }
     708    */
     709
    698710    }
    699711
     
    701713    // front WordPress Core
    702714    function ll_login_footer($input_id = '') {
     715
     716        if ( !function_exists( 'login_header' ) ) {
     717
     718            ob_start();
     719            require_once( ABSPATH . '/wp-login.php' );
     720            ob_end_clean();
     721
     722        }
     723
     724        login_footer( $input_id );
     725
     726    /******
     727
    703728        echo "</div>\n";
    704729
     
    717742        </html>
    718743        <?php
     744
     745    ********/
     746
    719747    }
    720748
  • login-lock/tags/2.2.7/readme.txt

    r497152 r499245  
    55Requires at least: 3.2
    66Tested up to: 3.3.1
    7 Stable Tag: 2.2.6
     7Stable Tag: 2.2.7
    88
    99Enforces strong password policies; provides emergency lockdown features; monitors login attempts; blocks hacker IP addresses; and logs out idle users.
     
    4848Visit our [WordPress Security](https://wpsecurity.net " WordPress Security ") Web site and use the Contact Us page.
    4949
     50Note that we will probably NOT notice any support request or bug report you post to the WordPress forums. So if you take that route and ignore the above recommended way of getting prompt support, then you're most likely on your own.
     51
    5052= I found a bug, how do I report it? =
    5153
     
    7173
    7274== Changelog ==
     75
     76= 2.2.7 =
     77* Added fix for the is_rtl() error that appears when using WP 3.3.x
    7378
    7479= 2.2.6 =
  • login-lock/trunk/loginlock.php

    r497152 r499245  
    33Plugin Name: Login Lock
    44Plugin URI: https://wpsecurity.net/wordpress-security-login-lock/
    5 Version: v2.2.6
     5Version: v2.2.7
    66Author: Mark Edwards / WPSecurity.net
    77Author URI: https://wpsecurity.net
     
    620620        global $error, $is_iphone, $interim_login, $current_site;
    621621
     622        if ( !function_exists( 'login_header' ) ) {
     623
     624            ob_start();
     625            require_once( ABSPATH . '/wp-login.php' );
     626            ob_end_clean();
     627
     628        }
     629
     630        login_header( $title, $message, $wp_error );
     631
     632/*
    622633        add_filter( 'pre_option_blog_public', '__return_zero' );
    623634        add_action( 'login_head', 'noindex' );
     
    666677    ertitle', esc_attr__('Powered by WordPress')); ?>"><?php bloginfo('name'); ?></a></h1>
    667678    <?php   } else { ?>
    668     <div id="login"><h1><a href="<?php echo apply_filters('login_headerurl', network_home_url() ); ?>" title="<?php echo apply_filters('login_headerti
    669     tle', esc_attr($current_site->site_name) ); ?>"><span class="hide"><?php bloginfo('name'); ?></span></a></h1>
     679    <div id="login"><h1><a href="<?php echo apply_filters('login_headerurl', network_home_url() ); ?>" title="<?php echo apply_filters('login_headertitle', esc_attr($current_site->site_name) ); ?>"><span class="hide"><?php bloginfo('name'); ?></span></a></h1>
    670680    <?php   }
    671681
     
    696706                echo '<p class="message">' . apply_filters('login_messages', $messages) . "</p>\n";
    697707        }
     708    */
     709
    698710    }
    699711
     
    701713    // front WordPress Core
    702714    function ll_login_footer($input_id = '') {
     715
     716        if ( !function_exists( 'login_header' ) ) {
     717
     718            ob_start();
     719            require_once( ABSPATH . '/wp-login.php' );
     720            ob_end_clean();
     721
     722        }
     723
     724        login_footer( $input_id );
     725
     726    /******
     727
    703728        echo "</div>\n";
    704729
     
    717742        </html>
    718743        <?php
     744
     745    ********/
     746
    719747    }
    720748
  • login-lock/trunk/readme.txt

    r497152 r499245  
    55Requires at least: 3.2
    66Tested up to: 3.3.1
    7 Stable Tag: 2.2.6
     7Stable Tag: 2.2.7
    88
    99Enforces strong password policies; provides emergency lockdown features; monitors login attempts; blocks hacker IP addresses; and logs out idle users.
     
    4848Visit our [WordPress Security](https://wpsecurity.net " WordPress Security ") Web site and use the Contact Us page.
    4949
     50Note that we will probably NOT notice any support request or bug report you post to the WordPress forums. So if you take that route and ignore the above recommended way of getting prompt support, then you're most likely on your own.
     51
    5052= I found a bug, how do I report it? =
    5153
     
    7173
    7274== Changelog ==
     75
     76= 2.2.7 =
     77* Added fix for the is_rtl() error that appears when using WP 3.3.x
    7378
    7479= 2.2.6 =
Note: See TracChangeset for help on using the changeset viewer.