WPS Hide Login - Version 1.2.5.1

Version Description

  • Fix : add action in hook activate
Download this release

Release Info

Developer NicolasKulka
Plugin Icon 128x128 WPS Hide Login
Version 1.2.5.1
Comparing to
See all releases

Code changes from version 1.2.5 to 1.2.5.1

Files changed (3) hide show
  1. classes/plugin.php +1 -1
  2. readme.txt +4 -1
  3. wps-hide-login.php +3 -3
classes/plugin.php CHANGED
@@ -172,7 +172,7 @@ if ( ! class_exists( 'WPS_Hide_Login' ) ) {
172
  }
173
 
174
  public static function activate() {
175
- add_option( 'whl_redirect', '1' );
176
 
177
  do_action( 'wps_hide_login_activate' );
178
  }
172
  }
173
 
174
  public static function activate() {
175
+ //add_option( 'whl_redirect', '1' );
176
 
177
  do_action( 'wps_hide_login_activate' );
178
  }
readme.txt CHANGED
@@ -4,7 +4,7 @@ Contributors: tabrisrp, WPServeur, nicolaskulka
4
  Tags: rename, login, wp-login, wp-login.php, custom login url
5
  Requires at least: 4.1
6
  Tested up to: 4.9
7
- Stable tag: 1.2.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -140,6 +140,9 @@ First step is to check your .htaccess file and compare it to a regular one, to s
140
 
141
  == Changelog ==
142
 
 
 
 
143
  = 1.2.5 =
144
  * Remove : redirect activate
145
 
4
  Tags: rename, login, wp-login, wp-login.php, custom login url
5
  Requires at least: 4.1
6
  Tested up to: 4.9
7
+ Stable tag: 1.2.5.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
140
 
141
  == Changelog ==
142
 
143
+ = 1.2.5.1 =
144
+ * Fix : add action in hook activate
145
+
146
  = 1.2.5 =
147
  * Remove : redirect activate
148
 
wps-hide-login.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WPS Hide Login
4
  Description: Protect your website by changing the login URL and preventing access to wp-login.php page and wp-admin directory while not logged-in
5
  Author: WPServeur, NicolasKulka, tabrisrp
6
  Author URI: https://wpserveur.net
7
- Version: 1.2.5
8
  Requires at least: 4.1
9
  Tested up to: 4.9
10
  License: GPLv2 or later
@@ -17,7 +17,7 @@ if ( ! defined( 'ABSPATH' ) ) {
17
  }
18
 
19
  // Plugin constants
20
- define( 'WPS_HIDE_LOGIN_VERSION', '1.2.5' );
21
  define( 'WPS_HIDE_LOGIN_FOLDER', 'wps-hide-login' );
22
 
23
  define( 'WPS_HIDE_LOGIN_URL', plugin_dir_url( __FILE__ ) );
@@ -38,7 +38,7 @@ wps_hide_login_load_files( WPS_HIDE_LOGIN_DIR . 'classes/', array(
38
  'plugin',
39
  ) );
40
 
41
- //register_activation_hook( __FILE__, array( 'WPS_Hide_Login', 'activate' ) );
42
 
43
  add_action( 'plugins_loaded', 'plugins_loaded_wps_hide_login_plugin' );
44
  function plugins_loaded_wps_hide_login_plugin() {
4
  Description: Protect your website by changing the login URL and preventing access to wp-login.php page and wp-admin directory while not logged-in
5
  Author: WPServeur, NicolasKulka, tabrisrp
6
  Author URI: https://wpserveur.net
7
+ Version: 1.2.5.1
8
  Requires at least: 4.1
9
  Tested up to: 4.9
10
  License: GPLv2 or later
17
  }
18
 
19
  // Plugin constants
20
+ define( 'WPS_HIDE_LOGIN_VERSION', '1.2.5.1' );
21
  define( 'WPS_HIDE_LOGIN_FOLDER', 'wps-hide-login' );
22
 
23
  define( 'WPS_HIDE_LOGIN_URL', plugin_dir_url( __FILE__ ) );
38
  'plugin',
39
  ) );
40
 
41
+ register_activation_hook( __FILE__, array( 'WPS_Hide_Login', 'activate' ) );
42
 
43
  add_action( 'plugins_loaded', 'plugins_loaded_wps_hide_login_plugin' );
44
  function plugins_loaded_wps_hide_login_plugin() {