Admin Custom Login - Version 3.4.3

Version Description

Download this release

Release Info

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

Code changes from version 3.4.2 to 3.4.3

admin-custom-login.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * Plugin Name: Admin Custom Login
4
- * Version: 3.4.2
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.3
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-background.php} RENAMED
@@ -622,7 +622,7 @@ if (!defined('ABSPATH')) exit;
622
  <tr style="border-bottom:none;">
623
  <td>
624
  <textarea type="text" rows="4" class="pro_text" placeholder="<?php esc_attr_e('Type Message', WEBLIZAR_ACL); ?>" id="tagline_msg" name="tagline_msg"><?php $edit_tagline_msg = stripslashes($tagline_msg);
625
- echo esc_html($edit_tagline_msg); ?></textarea>
626
  </td>
627
  </tr>
628
  </table>
@@ -756,9 +756,9 @@ if (isset($_POST['Action'])) {
756
  $login_custom_css = wp_strip_all_tags( $_POST['login_custom_css']);
757
  $login_redirect_user = sanitize_text_field( $_POST['login_redirect_user']);
758
  $login_force_redirect_url = sanitize_text_field( $_POST['login_force_redirect_url']);
759
- $log_form_above_msg = sanitize_text_field( $_POST['log_form_above_msg']);
760
  $login_pass_reset_msg = sanitize_text_field( $_POST['login_pass_reset_msg']);
761
- $tagline_msg = sanitize_text_field( $_POST['tagline_msg']);
762
  $login_msg_fontsize = sanitize_text_field( $_POST['login_msg_fontsize']);
763
  $login_msg_font_color = sanitize_hex_color( $_POST['login_msg_font_color']);
764
  $login_tagline_text_color = sanitize_hex_color( $_POST['login_tagline_text_color']);
622
  <tr style="border-bottom:none;">
623
  <td>
624
  <textarea type="text" rows="4" class="pro_text" placeholder="<?php esc_attr_e('Type Message', WEBLIZAR_ACL); ?>" id="tagline_msg" name="tagline_msg"><?php $edit_tagline_msg = stripslashes($tagline_msg);
625
+ echo wp_kses_post($edit_tagline_msg); ?></textarea>
626
  </td>
627
  </tr>
628
  </table>
756
  $login_custom_css = wp_strip_all_tags( $_POST['login_custom_css']);
757
  $login_redirect_user = sanitize_text_field( $_POST['login_redirect_user']);
758
  $login_force_redirect_url = sanitize_text_field( $_POST['login_force_redirect_url']);
759
+ $log_form_above_msg = wp_kses_post( $_POST['log_form_above_msg']);
760
  $login_pass_reset_msg = sanitize_text_field( $_POST['login_pass_reset_msg']);
761
+ $tagline_msg = wp_kses_post( $_POST['tagline_msg']);
762
  $login_msg_fontsize = sanitize_text_field( $_POST['login_msg_fontsize']);
763
  $login_msg_font_color = sanitize_hex_color( $_POST['login_msg_font_color']);
764
  $login_tagline_text_color = sanitize_hex_color( $_POST['login_tagline_text_color']);
init.php CHANGED
@@ -336,7 +336,7 @@ function acl_footer_func()
336
  $edit_tagline_msg = " ";
337
  }
338
  ?>
339
- jQuery( "#backtoblog" ).append('<div class="divfooter"><?php echo esc_html($edit_tagline_msg);?></div>');
340
  });
341
 
342
  <?php
336
  $edit_tagline_msg = " ";
337
  }
338
  ?>
339
+ jQuery( "#backtoblog" ).append('<div class="divfooter"><?php echo wp_kses_post($edit_tagline_msg);?></div>');
340
  });
341
 
342
  <?php
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: weblizar
3
  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.0
7
- Stable tag: 3.4.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -189,6 +189,10 @@ 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.2 - [04-06-2022]
193
  * Added: login button issue fixed.
194
 
3
  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.0.1
7
+ Stable tag: 3.4.3
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.3 - [26-07-2022]
193
+ * Added: login form tag line issue fixed.
194
+ * Fixed: login-form-background file issue fixed.
195
+
196
  3.4.2 - [04-06-2022]
197
  * Added: login button issue fixed.
198