Changeset 499245
- Timestamp:
- 02/02/2012 04:25:40 PM (14 years ago)
- Location:
- login-lock
- Files:
-
- 2 edited
- 9 copied
-
tags/2.2.7 (copied) (copied from login-lock/trunk)
-
tags/2.2.7/css/wpsec-login.css (copied) (copied from login-lock/trunk/css/wpsec-login.css)
-
tags/2.2.7/images/coins.png (copied) (copied from login-lock/trunk/images/coins.png)
-
tags/2.2.7/images/icon-twitter16x16.png (copied) (copied from login-lock/trunk/images/icon-twitter16x16.png)
-
tags/2.2.7/js/loginlock.js (copied) (copied from login-lock/trunk/js/loginlock.js)
-
tags/2.2.7/loginlock.php (copied) (copied from login-lock/trunk/loginlock.php) (6 diffs)
-
tags/2.2.7/loginlock_psws.php (copied) (copied from login-lock/trunk/loginlock_psws.php)
-
tags/2.2.7/plugin_tools.php (copied) (copied from login-lock/trunk/plugin_tools.php)
-
tags/2.2.7/readme.txt (copied) (copied from login-lock/trunk/readme.txt) (3 diffs)
-
trunk/loginlock.php (modified) (6 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
login-lock/tags/2.2.7/loginlock.php
r497152 r499245 3 3 Plugin Name: Login Lock 4 4 Plugin URI: https://wpsecurity.net/wordpress-security-login-lock/ 5 Version: v2.2. 65 Version: v2.2.7 6 6 Author: Mark Edwards / WPSecurity.net 7 7 Author URI: https://wpsecurity.net … … 620 620 global $error, $is_iphone, $interim_login, $current_site; 621 621 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 /* 622 633 add_filter( 'pre_option_blog_public', '__return_zero' ); 623 634 add_action( 'login_head', 'noindex' ); … … 666 677 ertitle', esc_attr__('Powered by WordPress')); ?>"><?php bloginfo('name'); ?></a></h1> 667 678 <?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> 670 680 <?php } 671 681 … … 696 706 echo '<p class="message">' . apply_filters('login_messages', $messages) . "</p>\n"; 697 707 } 708 */ 709 698 710 } 699 711 … … 701 713 // front WordPress Core 702 714 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 703 728 echo "</div>\n"; 704 729 … … 717 742 </html> 718 743 <?php 744 745 ********/ 746 719 747 } 720 748 -
login-lock/tags/2.2.7/readme.txt
r497152 r499245 5 5 Requires at least: 3.2 6 6 Tested up to: 3.3.1 7 Stable Tag: 2.2. 67 Stable Tag: 2.2.7 8 8 9 9 Enforces strong password policies; provides emergency lockdown features; monitors login attempts; blocks hacker IP addresses; and logs out idle users. … … 48 48 Visit our [WordPress Security](https://wpsecurity.net " WordPress Security ") Web site and use the Contact Us page. 49 49 50 Note 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 50 52 = I found a bug, how do I report it? = 51 53 … … 71 73 72 74 == Changelog == 75 76 = 2.2.7 = 77 * Added fix for the is_rtl() error that appears when using WP 3.3.x 73 78 74 79 = 2.2.6 = -
login-lock/trunk/loginlock.php
r497152 r499245 3 3 Plugin Name: Login Lock 4 4 Plugin URI: https://wpsecurity.net/wordpress-security-login-lock/ 5 Version: v2.2. 65 Version: v2.2.7 6 6 Author: Mark Edwards / WPSecurity.net 7 7 Author URI: https://wpsecurity.net … … 620 620 global $error, $is_iphone, $interim_login, $current_site; 621 621 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 /* 622 633 add_filter( 'pre_option_blog_public', '__return_zero' ); 623 634 add_action( 'login_head', 'noindex' ); … … 666 677 ertitle', esc_attr__('Powered by WordPress')); ?>"><?php bloginfo('name'); ?></a></h1> 667 678 <?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> 670 680 <?php } 671 681 … … 696 706 echo '<p class="message">' . apply_filters('login_messages', $messages) . "</p>\n"; 697 707 } 708 */ 709 698 710 } 699 711 … … 701 713 // front WordPress Core 702 714 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 703 728 echo "</div>\n"; 704 729 … … 717 742 </html> 718 743 <?php 744 745 ********/ 746 719 747 } 720 748 -
login-lock/trunk/readme.txt
r497152 r499245 5 5 Requires at least: 3.2 6 6 Tested up to: 3.3.1 7 Stable Tag: 2.2. 67 Stable Tag: 2.2.7 8 8 9 9 Enforces strong password policies; provides emergency lockdown features; monitors login attempts; blocks hacker IP addresses; and logs out idle users. … … 48 48 Visit our [WordPress Security](https://wpsecurity.net " WordPress Security ") Web site and use the Contact Us page. 49 49 50 Note 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 50 52 = I found a bug, how do I report it? = 51 53 … … 71 73 72 74 == Changelog == 75 76 = 2.2.7 = 77 * Added fix for the is_rtl() error that appears when using WP 3.3.x 73 78 74 79 = 2.2.6 =
Note: See TracChangeset
for help on using the changeset viewer.