Stealth Login Page - Version 1.1.2

Version Description

  • Polish localization.
  • Updated FAQ with new information on why lockouts can still happen. I am working out how to protect from that, also, if it is at all possible.
Download this release

Release Info

Developer peterdog
Plugin Icon wp plugin Stealth Login Page
Version 1.1.2
Comparing to
See all releases

Code changes from version 1.1.3 to 1.1.2

images/pmg-logo.png DELETED
Binary file
languages/{stealth-login-page-de_de.po → stealth-login-page-de_DE.po} RENAMED
@@ -137,4 +137,5 @@ msgstr "1.0.0"
137
  #@ stealth-login-page
138
  #: plugin.php:36
139
  msgid "Sorry, you are not allowed to access this page directly."
140
- msgstr "Entschuldigung, aber Ihnen ist es nicht erlaubt auf diese Seite direkt zuzugreifen."
 
137
  #@ stealth-login-page
138
  #: plugin.php:36
139
  msgid "Sorry, you are not allowed to access this page directly."
140
+ msgstr "Entschuldigung, aber Ihnen ist es nicht erlaubt auf diese Seite direkt zuzugreifen."
141
+
languages/stealth-login-page-pl_PL.po CHANGED
@@ -115,4 +115,4 @@ msgstr "1.0.0"
115
 
116
  #: plugin.php:36
117
  msgid "Sorry, you are not allowed to access this page directly."
118
- msgstr "Nie jest możliwe bezpośrednie wywołanie tej strony. Przepraszam."
115
 
116
  #: plugin.php:36
117
  msgid "Sorry, you are not allowed to access this page directly."
118
+ msgstr "Nie jest możliwe bezpośrednie wywołanie tej strony. Przepraszam."
plugin.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Stealth Login Page
4
  Plugin URI: http://www.petersenmediagroup.com/plugins/stealth-login-page
5
- Version: 1.1.3
6
  Author: Jesse Petersen
7
  Author URI: http://www.petersenmediagroup.com
8
  Description: Protect your /wp-admin and wp-login.php pages from being accessed without editing .htaccess
@@ -48,32 +48,6 @@ function slp_load_plugin_translations() {
48
 
49
  }
50
 
51
- add_action('admin_menu', 'slp_plugin_menu');
52
- function slp_plugin_menu() {
53
- add_options_page( __( 'Stealth Login Page', 'stealth-login-page' ), __( 'Stealth Login Page', 'stealth-login-page' ), 'manage_options', 'stealth-login-page', 'slp_admin' );
54
- return;
55
- }
56
-
57
- /**
58
- * Add settings link on plugin page
59
- *
60
- * @since 1.1.3
61
- * @param array $links
62
- * @param string $file
63
- * @return array
64
- */
65
- add_filter( 'plugin_action_links', 'slp_admin_settings_link', 10, 2 );
66
- function slp_admin_settings_link( $links, $file ) {
67
-
68
- if ( plugin_basename(__FILE__) == $file ) {
69
- $settings_link = '<a href="' . admin_url( 'options-general.php?page=stealth-login-page' ) . '">' . __( 'Settings', 'stealth-login-page' ) . '</a>';
70
- array_unshift( $links, $settings_link );
71
- }
72
-
73
- return $links;
74
-
75
- }
76
-
77
  // Global Variables ---------------------- //
78
  $slp_prefix = 'slp_';
79
  $slp_plugin_name = 'Stealth Login Page';
2
  /*
3
  Plugin Name: Stealth Login Page
4
  Plugin URI: http://www.petersenmediagroup.com/plugins/stealth-login-page
5
+ Version: 1.1.2
6
  Author: Jesse Petersen
7
  Author URI: http://www.petersenmediagroup.com
8
  Description: Protect your /wp-admin and wp-login.php pages from being accessed without editing .htaccess
48
 
49
  }
50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  // Global Variables ---------------------- //
52
  $slp_prefix = 'slp_';
53
  $slp_plugin_name = 'Stealth Login Page';
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: login, wp-admin, redirect, security, 302
5
  Requires at least: 3.4.2
6
  Tested up to: 3.5.1
7
- Stable tag: 1.1.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -26,10 +26,6 @@ When using a login limiting plugin, it is possible that someone is on your netwo
26
 
27
  This does NOT replace the need for security "best practices" such as a strong password or a secure hosting environment. This is an additional layer of security, best combined with a login limiter such as <a href="http://wordpress.org/extend/plugins/limit-login-attempts/">Limit Login Attempts</a> or <a href="http://wordpress.org/extend/plugins/login-lockdown/">Login Lockdown</a>.
28
 
29
- = WP 3.6 Warning =
30
-
31
- It has come to my attention that the new WP 3.6 session timeout function opens up the login form but it doesn't have any idea about the new URL to avoid a redirect, so it will automatically redirect when this happens. I AM trying to fix this before 3.6 drops, but please be aware of this if you don't see v 1.2.1 and you've upgraded to WP 3.6 or 3.6-beta.
32
-
33
  == Installation ==
34
 
35
  1. Upload contents of the directory to /wp-content/plugins/ (or use the automatic installer)
@@ -63,10 +59,6 @@ See more [examples](http://www.petersenmediagroup.com/plugins/stealth-login-page
63
 
64
  == Changelog ==
65
 
66
- = 1.1.3=
67
- * Added Settings Link on the Plugins page to link to the settings.
68
- * Added useful links to the settings page.
69
-
70
  = 1.1.2 =
71
  * Polish localization.
72
  * Updated FAQ with new information on why lockouts can still happen. I am working out how to protect from that, also, if it is at all possible.
@@ -83,11 +75,6 @@ See more [examples](http://www.petersenmediagroup.com/plugins/stealth-login-page
83
 
84
  == Upgrade Notice ==
85
 
86
- = 1.1.3=
87
- * Added some more IP address security - to be updated periodically.
88
- * Added Settings Link on the Plugins page to link to the settings.
89
- * Added useful links to the settings page.
90
-
91
  = 1.1.2 =
92
  * Polish localization.
93
  * Updated FAQ with new information on why lockouts can still happen. I am working out how to protect from that, also, if it is at all possible.
4
  Tags: login, wp-admin, redirect, security, 302
5
  Requires at least: 3.4.2
6
  Tested up to: 3.5.1
7
+ Stable tag: 1.1.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
26
 
27
  This does NOT replace the need for security "best practices" such as a strong password or a secure hosting environment. This is an additional layer of security, best combined with a login limiter such as <a href="http://wordpress.org/extend/plugins/limit-login-attempts/">Limit Login Attempts</a> or <a href="http://wordpress.org/extend/plugins/login-lockdown/">Login Lockdown</a>.
28
 
 
 
 
 
29
  == Installation ==
30
 
31
  1. Upload contents of the directory to /wp-content/plugins/ (or use the automatic installer)
59
 
60
  == Changelog ==
61
 
 
 
 
 
62
  = 1.1.2 =
63
  * Polish localization.
64
  * Updated FAQ with new information on why lockouts can still happen. I am working out how to protect from that, also, if it is at all possible.
75
 
76
  == Upgrade Notice ==
77
 
 
 
 
 
 
78
  = 1.1.2 =
79
  * Polish localization.
80
  * Updated FAQ with new information on why lockouts can still happen. I am working out how to protect from that, also, if it is at all possible.