Plugin Directory

Changeset 1233022


Ignore:
Timestamp:
08/28/2015 11:12:49 AM (10 years ago)
Author:
bkmacdaddy
Message:

uploading version 2.3.1

Location:
pinterest-rss-widget/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pinterest-rss-widget/trunk/pinterest-rss-widget.php

    r1206732 r1233022  
    55Description: Display up to 25 of your latest Pinterest Pins in your sidebar. You are welcome to express your gratitude for this plugin by donating via <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=SXTEL7YLUSFFC" target="_blank"><strong>PayPal</strong></a>
    66Author: bkmacdaddy designs
    7 Version: 2.3
     7Version: 2.3.1
    88Author URI: http://bkmacdaddy.com/
    99
     
    154154
    155155class Pinterest_RSS_Widget extends WP_Widget {
    156   function Pinterest_RSS_Widget() {
    157     $widget_ops = array('classname' => 'pinterest_rss_widget', 'description' => 'A widget to display latest Pinterest Pins via RSS feed' );
    158     $this->WP_Widget('pinterest_rss_widget', 'Pinterest RSS Widget', $widget_ops);
     156  // function Pinterest_RSS_Widget() { <--- Deprecated in WP 4.3
     157    function __construct() {
     158    // $widget_ops = array('classname' => 'pinterest_rss_widget', 'description' => 'A widget to display latest Pinterest Pins via RSS feed' ); <--- Deprecated in WP 4.3
     159    // $this->WP_Widget('pinterest_rss_widget', 'Pinterest RSS Widget', $widget_ops); <--- Deprecated in WP 4.3
     160   
     161        $widget_ops = array('classname' => 'pinterest_rss_widget', 'description' => 'A widget to display latest Pinterest Pins via RSS feed' );
     162        parent::__construct('pinterest_rss_widget', 'Pinterest RSS Widget', $widget_ops);
    159163  }
    160164
  • pinterest-rss-widget/trunk/readme.txt

    r1206732 r1233022  
    44Tags: Pinterest, rss, feed, widget
    55Requires at least: 2.8.4
    6 Tested up to: 4.2.3
     6Tested up to: 4.3
    77Stable tag: trunk
    88
     
    6969
    7070== Changelog ==
     71
     72= 2.3.1 =
     73* Fixed deprecated called constructor method for WP_Widget
    7174
    7275= 2.3 =
Note: See TracChangeset for help on using the changeset viewer.