Rename wp-login.php - Version 1.5

Version Description

  • Made User Switching compatible.
Download this release

Release Info

Developer avryl
Plugin Icon 128x128 Rename wp-login.php
Version 1.5
Comparing to
See all releases

Code changes from version 1.4 to 1.5

Files changed (2) hide show
  1. readme.txt +7 -6
  2. rename-wp-login.php +2 -2
readme.txt CHANGED
@@ -4,7 +4,7 @@ Contributors: avryl
4
  Tags: rename, login, wp-login, wp-login.php, brute force, attacks
5
  Requires at least: 3.6
6
  Tested up to: 3.6
7
- Stable tag: trunk
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -53,13 +53,14 @@ While you could use this plugin to prevent a lot of brute force attacks, it does
53
 
54
  = I forgot my login url! =
55
 
56
- There are two ways to solve your problem:
57
-
58
- 1. go to your MySQL database and look for the value of `rwl_page` in the options table, or
59
- 2. remove the `rename-wp-login` folder from your `plugins` folder, log in through the standard wp-login.php and reinstall the plugin.
60
 
61
  == Changelog ==
62
 
 
 
 
 
63
  = 1.4 =
64
 
65
  * Faster page load.
@@ -84,6 +85,6 @@ There are two ways to solve your problem:
84
 
85
  == Upgrade Notice ==
86
 
87
- = 1.4 =
88
 
89
  Always immediately update this plugin please!
4
  Tags: rename, login, wp-login, wp-login.php, brute force, attacks
5
  Requires at least: 3.6
6
  Tested up to: 3.6
7
+ Stable tag: 1.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
53
 
54
  = I forgot my login url! =
55
 
56
+ Either go to your MySQL database and look for the value of `rwl_page` in the options table, or remove the `rename-wp-login` folder from your `plugins` folder, log in through wp-login.php and reinstall the plugin.
 
 
 
57
 
58
  == Changelog ==
59
 
60
+ = 1.5 =
61
+
62
+ * Made [User Switching](http://wordpress.org/plugins/user-switching/) compatible.
63
+
64
  = 1.4 =
65
 
66
  * Faster page load.
85
 
86
  == Upgrade Notice ==
87
 
88
+ = 1.5 =
89
 
90
  Always immediately update this plugin please!
rename-wp-login.php CHANGED
@@ -6,7 +6,7 @@ Plugin URI: http://wordpress.org/plugins/rename-wp-login/
6
  Description: Change wp-login.php to whatever you want. It can also prevent a lot of brute force attacks.
7
  Author: avryl
8
  Author URI: http://profiles.wordpress.org/avryl/
9
- Version: 1.4
10
  Text Domain: rename-wp-login
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -99,7 +99,7 @@ function rwl_plugin_action_links( $links ) {
99
  if ( ! get_option('permalink_structure') )
100
  return;
101
 
102
- add_action( 'init', 'rwl_init' );
103
  add_action( 'login_init', 'rwl_login_init' );
104
 
105
  add_filter( 'site_url', 'rwl_filter_site_url', 10, 4 );
6
  Description: Change wp-login.php to whatever you want. It can also prevent a lot of brute force attacks.
7
  Author: avryl
8
  Author URI: http://profiles.wordpress.org/avryl/
9
+ Version: 1.5
10
  Text Domain: rename-wp-login
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
99
  if ( ! get_option('permalink_structure') )
100
  return;
101
 
102
+ add_action( 'init', 'rwl_init', 11 );
103
  add_action( 'login_init', 'rwl_login_init' );
104
 
105
  add_filter( 'site_url', 'rwl_filter_site_url', 10, 4 );