Ultimate Member – User Profile & Membership Plugin - Version 1.3.35

Version Description

Download this release

Release Info

Developer ultimatemember
Plugin Icon 128x128 Ultimate Member – User Profile & Membership Plugin
Version 1.3.35
Comparing to
See all releases

Code changes from version 1.3.34 to 1.3.35

Files changed (3) hide show
  1. index.php +1 -1
  2. readme.txt +5 -1
  3. um-init.php +2 -6
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Ultimate Member
4
  Plugin URI: http://ultimatemember.com/
5
  Description: The easiest way to create powerful online communities and beautiful user profiles with WordPress
6
- Version: 1.3.34
7
  Author: Ultimate Member
8
  Author URI: http://ultimatemember.com/
9
  */
3
  Plugin Name: Ultimate Member
4
  Plugin URI: http://ultimatemember.com/
5
  Description: The easiest way to create powerful online communities and beautiful user profiles with WordPress
6
+ Version: 1.3.35
7
  Author: Ultimate Member
8
  Author URI: http://ultimatemember.com/
9
  */
readme.txt CHANGED
@@ -7,7 +7,7 @@ Tags: access control, author, authors, author profile, comments, community, comm
7
  Requires at least: 4.1
8
  Tested up to: 4.4
9
 
10
- Stable Tag: 1.3.34
11
 
12
  License: GNU Version 2 or Any Later Version
13
 
@@ -146,6 +146,10 @@ The plugin works with popular caching plugins by automatically excluding Ultimat
146
 
147
  == Changelog ==
148
 
 
 
 
 
149
  = 1.3.34: December 15, 2015 =
150
 
151
  * New: new privacy option for fields: allow profile owner & specific roles to view the field
7
  Requires at least: 4.1
8
  Tested up to: 4.4
9
 
10
+ Stable Tag: 1.3.35
11
 
12
  License: GNU Version 2 or Any Later Version
13
 
146
 
147
  == Changelog ==
148
 
149
+ = 1.3.35: December 15, 2015 =
150
+
151
+ * Fixed: registration/login issues resolved
152
+
153
  = 1.3.34: December 15, 2015 =
154
 
155
  * New: new privacy option for fields: allow profile owner & specific roles to view the field
um-init.php CHANGED
@@ -15,8 +15,7 @@ class UM_API {
15
  }
16
 
17
  add_action('init', array(&$this, 'init'), 0);
18
- add_action('init', array(&$this, 'form'), 10);
19
-
20
  add_action('init', array(&$this, 'load_addons') );
21
 
22
  $this->honeypot = 'request';
@@ -159,6 +158,7 @@ class UM_API {
159
  $this->datetime = new UM_DateTime();
160
  $this->chart = new UM_Chart();
161
  $this->builtin = new UM_Builtin();
 
162
  $this->files = new UM_Files();
163
  $this->taxonomies = new UM_Taxonomies();
164
  $this->validation = new UM_Validation();
@@ -186,10 +186,6 @@ class UM_API {
186
 
187
  }
188
 
189
- function form() {
190
- $this->form = new UM_Form();
191
- }
192
-
193
  }
194
 
195
  $ultimatemember = new UM_API();
15
  }
16
 
17
  add_action('init', array(&$this, 'init'), 0);
18
+
 
19
  add_action('init', array(&$this, 'load_addons') );
20
 
21
  $this->honeypot = 'request';
158
  $this->datetime = new UM_DateTime();
159
  $this->chart = new UM_Chart();
160
  $this->builtin = new UM_Builtin();
161
+ $this->form = new UM_Form();
162
  $this->files = new UM_Files();
163
  $this->taxonomies = new UM_Taxonomies();
164
  $this->validation = new UM_Validation();
186
 
187
  }
188
 
 
 
 
 
189
  }
190
 
191
  $ultimatemember = new UM_API();