Lockdown WP Admin - Version 2.0.1

Version Description

  • Tiny bug fix
Download this release

Release Info

Developer sean212
Plugin Icon wp plugin Lockdown WP Admin
Version 2.0.1
Comparing to
See all releases

Code changes from version 2.0 to 2.0.1

Files changed (3) hide show
  1. README.md +5 -1
  2. lockdown-wp-admin.php +3 -3
  3. readme.txt +5 -2
README.md CHANGED
@@ -84,4 +84,8 @@ A very late update, sorry! Worked to fix many issues with the admin bar and the
84
  2.0
85
  * Provided a system dump to help in debugging issues that may arise.
86
  * Fixes a issues on the 404 page under 3.5.1 (`get_current_screen()`)
87
- * Cleanup, cleanup!
 
 
 
 
84
  2.0
85
  * Provided a system dump to help in debugging issues that may arise.
86
  * Fixes a issues on the 404 page under 3.5.1 (`get_current_screen()`)
87
+ * Cleanup, cleanup!
88
+
89
+ 2.0.1
90
+
91
+ Tiny bug fix.
lockdown-wp-admin.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Lockdown WP Admin
4
  Plugin URI: http://seanfisher.co/lockdown-wp-admin/
5
  Donate link: http://seanfisher.co/donate/
6
  Description: Securing the WordPress Administration interface by concealing the administration dashboard and changing the login page URL.
7
- Version: 2.0
8
  Author: Sean Fisher
9
  Author URI: http://seanfisher.co/
10
  License: GPL
@@ -528,7 +528,7 @@ class WP_LockAuth
528
 
529
  // The UI
530
  $private_users = $this->get_private_users();
531
- require_once( __DIR__ . '/admin-private-users.php' );
532
  }
533
 
534
  /**
@@ -674,4 +674,4 @@ function ld_setup_auth()
674
  add_action('init', 'ld_setup_auth');
675
 
676
  /* End of file: lockdown-wp-admin.php */
677
- /* Code is poetry. */
4
  Plugin URI: http://seanfisher.co/lockdown-wp-admin/
5
  Donate link: http://seanfisher.co/donate/
6
  Description: Securing the WordPress Administration interface by concealing the administration dashboard and changing the login page URL.
7
+ Version: 2.0.1
8
  Author: Sean Fisher
9
  Author URI: http://seanfisher.co/
10
  License: GPL
528
 
529
  // The UI
530
  $private_users = $this->get_private_users();
531
+ require_once( dirname( __FILE__ ) . '/admin-private-users.php' );
532
  }
533
 
534
  /**
674
  add_action('init', 'ld_setup_auth');
675
 
676
  /* End of file: lockdown-wp-admin.php */
677
+ /* Code is poetry. */
readme.txt CHANGED
@@ -5,7 +5,7 @@ Link: http://seanfisher.co/lockdown-wp-admin/
5
  Tags: security, secure, lockdown, vulnerability, website security, wp-admin, login, hide login, rename login, http auth, 404, lockdown, srtfisher, secure
6
  Requires at least: 3.3
7
  Tested up to: 3.5.1
8
- Stable tag: 2.0
9
 
10
  Lockdown WP Admin conceals the administration and login screen from intruders. It can hide WordPress Admin (/wp-admin/) and and login (/wp-login.php) as well as add HTTP authentication to the login system. We can also change the login URL from wp-login.php to whatever you'd like: /login, /log-in-here, etc.
11
 
@@ -89,4 +89,7 @@ A very late update, sorry! Worked to fix many issues with the admin bar and the
89
  = 2.0 =
90
  * Provided a system dump to help in debugging issues that may arise.
91
  * Fixes a issues on the 404 page under 3.5.1 (`get_current_screen()`)
92
- * Cleanup, cleanup!
 
 
 
5
  Tags: security, secure, lockdown, vulnerability, website security, wp-admin, login, hide login, rename login, http auth, 404, lockdown, srtfisher, secure
6
  Requires at least: 3.3
7
  Tested up to: 3.5.1
8
+ Stable tag: 2.0.1
9
 
10
  Lockdown WP Admin conceals the administration and login screen from intruders. It can hide WordPress Admin (/wp-admin/) and and login (/wp-login.php) as well as add HTTP authentication to the login system. We can also change the login URL from wp-login.php to whatever you'd like: /login, /log-in-here, etc.
11
 
89
  = 2.0 =
90
  * Provided a system dump to help in debugging issues that may arise.
91
  * Fixes a issues on the 404 page under 3.5.1 (`get_current_screen()`)
92
+ * Cleanup, cleanup!
93
+
94
+ = 2.0.1 =
95
+ * Tiny bug fix