Admin Custom Login - Version 3.4.6

Version Description

Download this release

Release Info

Developer weblizar
Plugin Icon 128x128 Admin Custom Login
Version 3.4.6
Comparing to
See all releases

Code changes from version 3.4.5 to 3.4.6

admin-custom-login.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * Plugin Name: Admin Custom Login
4
- * Version: 3.4.5
5
  * Description: Customize Your WordPress Login Screen Amazingly - Add Own Logo, Add Social Profiles, Login Form Positions, Background Image Slide Show
6
  * Author: Weblizar
7
  * Author URI: https://weblizar.com/plugins/
1
  <?php
2
  /**
3
  * Plugin Name: Admin Custom Login
4
+ * Version: 3.4.6
5
  * Description: Customize Your WordPress Login Screen Amazingly - Add Own Logo, Add Social Profiles, Login Form Positions, Background Image Slide Show
6
  * Author: Weblizar
7
  * Author URI: https://weblizar.com/plugins/
includes/{login-form-setting/login-form-background.php → Login-form-setting/Login-form-background.php} RENAMED
File without changes
init.php CHANGED
@@ -177,7 +177,7 @@ function acl_advanced_login_form_plugin()
177
  wp_register_style('wl-acl-custom-css', WEBLIZAR_NALF_PLUGIN_URL.'css/acl-custom.css');
178
  wp_enqueue_style('wl-acl-custom-css');
179
  }
180
- if ($dashboard_page['dashboard_status'] == "enable") {
181
  add_action('login_enqueue_scripts', 'acl_advanced_login_form_plugin');
182
  }
183
 
@@ -1133,4 +1133,4 @@ function acl_import_settings()
1133
  ));
1134
  update_option('Admin_custome_login_gcaptcha', $g_page);
1135
  }
1136
- add_action('admin_init', 'acl_import_settings');
177
  wp_register_style('wl-acl-custom-css', WEBLIZAR_NALF_PLUGIN_URL.'css/acl-custom.css');
178
  wp_enqueue_style('wl-acl-custom-css');
179
  }
180
+ if (isset($dashboard_page['dashboard_status']) && $dashboard_page['dashboard_status'] == "enable") {
181
  add_action('login_enqueue_scripts', 'acl_advanced_login_form_plugin');
182
  }
183
 
1133
  ));
1134
  update_option('Admin_custome_login_gcaptcha', $g_page);
1135
  }
1136
+ add_action('admin_init', 'acl_import_settings');
login-form-screen.php CHANGED
@@ -183,10 +183,8 @@ function acl_er_login_logo() {
183
  }
184
  }
185
  $dashboard_page = unserialize( get_option( 'Admin_custome_login_dashboard' ) );
186
- $dashboard_status = ( $dashboard_page['dashboard_status'] );
187
  if ( $dashboard_status == 'enable' ) {
188
  add_action( 'login_enqueue_scripts', 'acl_er_login_logo' );
189
  }
190
-
191
-
192
- ?>
183
  }
184
  }
185
  $dashboard_page = unserialize( get_option( 'Admin_custome_login_dashboard' ) );
186
+ $dashboard_status = isset($dashboard_page['dashboard_status']) ? $dashboard_page['dashboard_status'] : 'disable';
187
  if ( $dashboard_status == 'enable' ) {
188
  add_action( 'login_enqueue_scripts', 'acl_er_login_logo' );
189
  }
190
+ ?>
 
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.weblizar.com/
4
  Tags: admin login page, custom login page, custom admin login, custom login, customize wordpress login page, design wordpress login
5
  Requires at least: 4.0
6
  Tested up to: 6.1
7
- Stable tag: 3.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -189,6 +189,9 @@ Please use WordPress [support forum](http://wordpress.org/support/plugin/admin-c
189
 
190
  For more information, see [Weblizar](http://www.weblizar.com/)
191
 
 
 
 
192
  3.4.5 - [09-11-2022]
193
  * Tested With Wordpress 6.1
194
  * Bug Fixed
4
  Tags: admin login page, custom login page, custom admin login, custom login, customize wordpress login page, design wordpress login
5
  Requires at least: 4.0
6
  Tested up to: 6.1
7
+ Stable tag: 3.4.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
189
 
190
  For more information, see [Weblizar](http://www.weblizar.com/)
191
 
192
+ 3.4.6 - [14-11-2022]
193
+ * Bug Fixed ( Trying to access array offset on value of type bool )
194
+
195
  3.4.5 - [09-11-2022]
196
  * Tested With Wordpress 6.1
197
  * Bug Fixed