Testimonials by WooThemes - Version 1.5.3

Version Description

  • 2014-07-03
  • Fix - $post global in template inadvertently removed in 1.5.2.
Download this release

Release Info

Developer jameskoster
Plugin Icon wp plugin Testimonials by WooThemes
Version 1.5.3
Comparing to
See all releases

Code changes from version 1.5.2 to 1.5.3

readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: woothemes, mattyza, jameskoster
3
  Donate link: http://woothemes.com/
4
  Tags: testimonials, widget, shortcode, template-tag, feedback, customers
5
  Requires at least: 3.4.2
6
- Tested up to: 3.9.1
7
- Stable tag: 1.5.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -130,6 +130,10 @@ We encourage everyone to contribute their ideas, thoughts and code snippets. Thi
130
 
131
  == Changelog ==
132
 
 
 
 
 
133
  = 1.5.2 =
134
  * 2014-07-02.
135
  * Tweak - If a URL is set the avatar will link to it.
3
  Donate link: http://woothemes.com/
4
  Tags: testimonials, widget, shortcode, template-tag, feedback, customers
5
  Requires at least: 3.4.2
6
+ Tested up to: 4.0
7
+ Stable tag: 1.5.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
130
 
131
  == Changelog ==
132
 
133
+ = 1.5.3 =
134
+ * 2014-07-03
135
+ * Fix - $post global in template inadvertently removed in 1.5.2.
136
+
137
  = 1.5.2 =
138
  * 2014-07-02.
139
  * Tweak - If a URL is set the avatar will link to it.
woothemes-testimonials-template.php CHANGED
@@ -29,7 +29,7 @@ if ( ! function_exists( 'woothemes_testimonials' ) ) {
29
  * @return string
30
  */
31
  function woothemes_testimonials ( $args = '' ) {
32
- global $more;
33
 
34
  $defaults = apply_filters( 'woothemes_testimonials_default_args', array(
35
  'limit' => 5,
29
  * @return string
30
  */
31
  function woothemes_testimonials ( $args = '' ) {
32
+ global $post, $more;
33
 
34
  $defaults = apply_filters( 'woothemes_testimonials_default_args', array(
35
  'limit' => 5,
woothemes-testimonials.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: http://woothemes.com/
5
  * Description: Hi, I'm your testimonials management plugin for WordPress. Show off what your customers or website users are saying about your business and how great they say you are, using our shortcode, widget or template tag.
6
  * Author: WooThemes
7
- * Version: 1.5.2
8
  * Author URI: http://woothemes.com/
9
  *
10
  * @package WordPress
@@ -19,4 +19,4 @@ require_once( 'woothemes-testimonials-template.php' );
19
  require_once( 'classes/class-woothemes-widget-testimonials.php' );
20
  global $woothemes_testimonials;
21
  $woothemes_testimonials = new Woothemes_Testimonials( __FILE__ );
22
- $woothemes_testimonials->version = '1.5.2';
4
  * Plugin URI: http://woothemes.com/
5
  * Description: Hi, I'm your testimonials management plugin for WordPress. Show off what your customers or website users are saying about your business and how great they say you are, using our shortcode, widget or template tag.
6
  * Author: WooThemes
7
+ * Version: 1.5.3
8
  * Author URI: http://woothemes.com/
9
  *
10
  * @package WordPress
19
  require_once( 'classes/class-woothemes-widget-testimonials.php' );
20
  global $woothemes_testimonials;
21
  $woothemes_testimonials = new Woothemes_Testimonials( __FILE__ );
22
+ $woothemes_testimonials->version = '1.5.3';