Plugin Directory

Changeset 1854431


Ignore:
Timestamp:
04/07/2018 05:06:50 AM (8 years ago)
Author:
SriniG
Message:

v2.0.10: Removing apply_filters('the_title') for the widget title as it's out of place here, also could be problematic without argument 2.

Location:
quotes-collection/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • quotes-collection/trunk/inc/class-quotes-collection-widget.php

    r1539083 r1854431  
    6363            extract( $args );
    6464            echo $before_widget;
    65             if($options['title']) echo $before_title . apply_filters('the_title', $options['title']) . $after_title . "\n";
     65            if($options['title']) echo $before_title . $options['title'] . $after_title . "\n";
    6666            echo $quote;
    6767            echo $after_widget;
  • quotes-collection/trunk/inc/class-quotes-collection.php

    r1638835 r1854431  
    1010   
    1111    /** Plugin version **/
    12     const PLUGIN_VERSION = '2.0.9';
     12    const PLUGIN_VERSION = '2.0.10';
    1313
    1414    public $refresh_link_text;
  • quotes-collection/trunk/quotes-collection.php

    r1638835 r1854431  
    44 * Plugin URI: http://srinig.com/wordpress/plugins/quotes-collection/
    55 * Description: Quotes Collection plugin with Ajax powered Random Quote sidebar widget helps you collect and display your favourite quotes in your WordPress blog/website.
    6  * Version: 2.0.9
     6 * Version: 2.0.10
    77 * Author: Srini G
    88 * Author URI: http://srinig.com/
     
    1212 */
    1313
    14 /*  Copyright 2007-2017 Srini G (email : s@srinig.com)
     14/*  Copyright 2007-2018 Srini G (email : s@srinig.com)
    1515
    1616    This program is free software; you can redistribute it and/or modify
  • quotes-collection/trunk/readme.txt

    r1676325 r1854431  
    44Tags: quotes collection, quotes, quotations, random quote, sidebar, widget, ajax, shortcode
    55Requires at least: 3.1
    6 Tested up to: 4.8
     6Tested up to: 4.9.5
    77Stable tag: trunk
    88License: GNU General Public License
     
    255255==Changelog==
    256256
     257* **2018-04-07: Version 2.0.10**
     258    * Removing apply_filters('the_title') for the widget title as it's out of place here, also could be problematic without argument 2.
     259
    257260* **2017-04-17: Version 2.0.9**
    258261    * CSS fix.
     
    494497== Upgrade Notice ==
    495498
     499= 2.0.10 =
     500Do upgrade if you get a "Warning: Missing argument 2 for WC_Template_Loader::unsupported_theme_title_filter() in ..." message.
     501
    496502= 2.0.9 =
    497503CSS fix. If you are running a version < 2.0.8, please upgrade as the lower versions may run into security issues. If you upgrade from a version prior to 2.0, you will have to re-add the widget and set the widget options once again after upgrading.
Note: See TracChangeset for help on using the changeset viewer.