Skip to content

Commit

Permalink
1.4.1 - Removes deprecated constructor call for WP_Widget
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffikus committed Jul 7, 2015
1 parent 59b17fe commit 19bc390
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion classes/class-woothemes-widget-our-team.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public function __construct() {
);

/* Create the widget. */
$this->WP_Widget( $this->woothemes_widget_idbase, $this->woothemes_widget_title, $widget_ops, $control_ops );
parent::__construct( $this->woothemes_widget_idbase, $this->woothemes_widget_title, $widget_ops, $control_ops );
} // End __construct()

/**
Expand Down
9 changes: 8 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: http://woothemes.com/
Tags: teams, team members, profiles, widget, shortcode, template-tag
Requires at least: 3.8
Tested up to: 3.9.1
Stable tag: 1.4.0
Stable tag: 1.4.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -189,6 +189,9 @@ We encourage everyone to contribute their ideas, thoughts and code snippets. Thi

== Upgrade Notice =

= 1.4.1 =
* Removes deprecated constructor call for WP_Widget

= 1.2.0 =
* Filter 'woothemes_our_member_fields' has been renamed to 'woothemes_our_team_member_fields'.
* Textdomain changed from 'woothemes-our-team' to 'our-team-by-woothemes'.
Expand All @@ -201,6 +204,10 @@ We encourage everyone to contribute their ideas, thoughts and code snippets. Thi

== Changelog ==

= 1.4.1 =
* 2015-07-07
* Removes deprecated constructor call for WP_Widget

= 1.4.0 =
* New - Team member contact email field.
* New - Team member telephone number field.
Expand Down
4 changes: 2 additions & 2 deletions woothemes-our-team.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Plugin URI: http://woothemes.com/
* Description: Hi, I'm your team profile management plugin for WordPress. Show off what your team members using our shortcode, widget or template tag.
* Author: WooThemes
* Version: 1.4.0
* Version: 1.4.1
* Author URI: http://woothemes.com/
*
* @package WordPress
Expand All @@ -19,4 +19,4 @@
require_once( 'classes/class-woothemes-widget-our-team.php' );
global $woothemes_our_team;
$woothemes_our_team = new Woothemes_Our_Team( __FILE__ );
$woothemes_our_team->version = '1.4.0';
$woothemes_our_team->version = '1.4.1';

0 comments on commit 19bc390

Please sign in to comment.