Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Luis Godinho committed Sep 21, 2015
2 parents 445e166 + 7eeebeb commit fb86dc9
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 10 deletions.
4 changes: 2 additions & 2 deletions gravityview.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* Plugin Name: GravityView
* Plugin URI: http://gravityview.co
* Description: Create directories based on a Gravity Forms form, insert them using a shortcode, and modify how they output.
* Version: 1.14
* Version: 1.14.3
* Author: Katz Web Services, Inc.
* Author URI: http://www.katzwebservices.com
* Text Domain: gravityview
Expand Down Expand Up @@ -89,7 +89,7 @@
*/
final class GravityView_Plugin {

const version = '1.14';
const version = '1.14.3';

private static $instance;

Expand Down
10 changes: 10 additions & 0 deletions includes/class-admin-welcome.php
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,16 @@ public function changelog_screen() {

<hr />

<h3>1.14.2 &amp; 1.14.3 on September 17</h3>
<ul>
<li>Fixed: Issue affecting Gravity Forms User Registration Addon. Passwords were being reset when an user edited their own entry.</li>
</ul>

<h3>1.14.1 on September 16</h3>
<ul>
<li>Fixed: Error with older versions of Maps Premium View</li>
</ul>

<h3>1.14 on September 16</h3>

<ul>
Expand Down
8 changes: 1 addition & 7 deletions includes/class-gravityview-extension.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*
* @since 1.1
*
* @version 1.1
* @version 1.1.1
*/
abstract class GravityView_Extension {

Expand All @@ -21,12 +21,6 @@ abstract class GravityView_Extension {
*/
protected $_title = NULL;

/**
* @since 1.1
* @var string Path to the base plugin file, normally `__FILE__`
*/
protected $_path = NULL;

/**
* @var string Version number of the plugin
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public function restore_user_details( $user_id = 0, $config = array(), $entry =

$restored_user = $user_after_update;

// Restore previous display_name
// Restore previous display_name
$restored_user->display_name = $this->_user_before_update->display_name;

// Restore previous roles
Expand All @@ -126,6 +126,9 @@ public function restore_user_details( $user_id = 0, $config = array(), $entry =
$restored_user->add_role( $role );
}

// Don't have WP update the password.
unset( $restored_user->data->user_pass );

/**
* Modify the user data after updated by Gravity Forms User Registration but before restored by GravityView
* @since 1.14
Expand Down
3 changes: 3 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ Beautifully display your Gravity Forms entries. Learn more on [gravityview.co](h

== Changelog ==

= 1.14.2 & 1.14.3 on September 17 =
* Fixed: Issue affecting Gravity Forms User Registration Addon. Passwords were being reset when an user edited their own entry.

= 1.14.1 on September 16 =
* Fixed: Error with older versions of Maps Premium View

Expand Down

0 comments on commit fb86dc9

Please sign in to comment.