User Registration – Custom Registration Form, Login Form And User Profile For WordPress - Version 1.2.3

Version Description

  • 06/04/2018 =
  • Fix - undefined index error in frontend
Download this release

Release Info

Developer wpeverest
Plugin Icon 128x128 User Registration – Custom Registration Form, Login Form And User Profile For WordPress
Version 1.2.3
Comparing to
See all releases

Code changes from version 1.2.2 to 1.2.3

includes/abstracts/abstract-ur-form-field.php CHANGED
@@ -84,13 +84,13 @@ abstract class UR_Form_Field {
84
 
85
  $form_data = array(
86
 
87
- 'label' => $data['general_setting']->label,
88
 
89
- 'placeholder' => $data['general_setting']->placeholder,
90
 
91
- 'description' => $data['general_setting']->description,
92
 
93
- 'hide_label' => $data['general_setting']->hide_label,
94
 
95
  'type' => $field_type,
96
  );
84
 
85
  $form_data = array(
86
 
87
+ 'label' => isset( $data['general_setting']->label ) ? $data['general_setting']->label : '',
88
 
89
+ 'placeholder' => isset( $data['general_setting']->placeholder ) ? $data['general_setting']->placeholder : '',
90
 
91
+ 'description' => isset( $data['general_setting']->description ) ? $data['general_setting']->description : '',
92
 
93
+ 'hide_label' => isset( $data['general_setting']->hide_label ) ? $data['general_setting']->hide_label : '',
94
 
95
  'type' => $field_type,
96
  );
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: WPEverest
3
  Tags: user registration, registration, profile-builder, user profile, form, registration form, login form, user login, membership
4
  Requires at least: 4.0
5
  Tested up to: 4.9
6
- Stable tag: 1.2.2
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -93,6 +93,9 @@ Yes, the plugin is designed to work with any themes that have been coded followi
93
 
94
  == Changelog ==
95
 
 
 
 
96
  = 1.2.2 - 06/04/2018 =
97
  * Feature - Registration without username option
98
  * Feature - Customizable form submission messages
3
  Tags: user registration, registration, profile-builder, user profile, form, registration form, login form, user login, membership
4
  Requires at least: 4.0
5
  Tested up to: 4.9
6
+ Stable tag: 1.2.3
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
93
 
94
  == Changelog ==
95
 
96
+ = 1.2.3 - 06/04/2018 =
97
+ * Fix - undefined index error in frontend
98
+
99
  = 1.2.2 - 06/04/2018 =
100
  * Feature - Registration without username option
101
  * Feature - Customizable form submission messages
user-registration.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: User Registration
4
  * Plugin URI: https://wpeverest.com/plugins/user-registration
5
  * Description: Drag and Drop user registration and login form builder.
6
- * Version: 1.2.2
7
  * Author: WPEverest
8
  * Author URI: https://wpeverest.com
9
  * Text Domain: user-registration
@@ -30,7 +30,7 @@ final class UserRegistration {
30
  * Plugin version.
31
  * @var string
32
  */
33
- public $version = '1.2.2';
34
 
35
  /**
36
  * Session instance.
3
  * Plugin Name: User Registration
4
  * Plugin URI: https://wpeverest.com/plugins/user-registration
5
  * Description: Drag and Drop user registration and login form builder.
6
+ * Version: 1.2.3
7
  * Author: WPEverest
8
  * Author URI: https://wpeverest.com
9
  * Text Domain: user-registration
30
  * Plugin version.
31
  * @var string
32
  */
33
+ public $version = '1.2.3';
34
 
35
  /**
36
  * Session instance.