Plugin Directory

Changeset 2653149


Ignore:
Timestamp:
01/05/2022 02:22:35 PM (4 years ago)
Author:
fsquared
Message:

0.3.2 release; remove deprecated create_function

Location:
f2-tag-cloud-widget
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • f2-tag-cloud-widget/tags/0.3.2/f2-tagcloud.php

    r903954 r2653149  
    33Plugin Name: F2 Tag Cloud Widget
    44Plugin URI: http://www.fsquared.co.uk/software/f2-tagcloud/
    5 Version: 0.3.1
     5Version: 0.3.2
    66Author: fsquared limited
    77Author URI: http://www.fsquared.co.uk
     
    99Description: Tag cloud widget which exposes more of the internal Wordpress tagcloud options.
    1010
    11 Copyright(c)2012 fsquared limited. http://www.fsquared.co.uk
     11Copyright(c)2012-2022 fsquared limited. http://www.fsquared.co.uk
    1212
    1313This program is free software; you can redistribute it and/or
     
    355355
    356356/* Last step, add this widget into the init action. */
    357 add_action( 'widgets_init', create_function( '', 'register_widget( "F2_Tag_Cloud_Widget" );' ) );
     357add_action( 'widgets_init', function() { register_widget( "F2_Tag_Cloud_Widget" ); } );
    358358?>
  • f2-tag-cloud-widget/tags/0.3.2/readme.txt

    r1773909 r2653149  
    33Tags: tags widget
    44Requires at least: 2.8
    5 Tested up to: 4.9
    6 Stable tag: trunk
     5Tested up to: 5.8.2
     6Stable tag: 0.3.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7272= 0.3.1 =
    7373Minor bug fix for a mis-applied filter.
     74
     75= 0.3.2 =
     76Removed deprecated 'create_function' call.
  • f2-tag-cloud-widget/trunk/f2-tagcloud.php

    r903954 r2653149  
    33Plugin Name: F2 Tag Cloud Widget
    44Plugin URI: http://www.fsquared.co.uk/software/f2-tagcloud/
    5 Version: 0.3.1
     5Version: 0.3.2
    66Author: fsquared limited
    77Author URI: http://www.fsquared.co.uk
     
    99Description: Tag cloud widget which exposes more of the internal Wordpress tagcloud options.
    1010
    11 Copyright(c)2012 fsquared limited. http://www.fsquared.co.uk
     11Copyright(c)2012-2022 fsquared limited. http://www.fsquared.co.uk
    1212
    1313This program is free software; you can redistribute it and/or
     
    355355
    356356/* Last step, add this widget into the init action. */
    357 add_action( 'widgets_init', create_function( '', 'register_widget( "F2_Tag_Cloud_Widget" );' ) );
     357add_action( 'widgets_init', function() { register_widget( "F2_Tag_Cloud_Widget" ); } );
    358358?>
  • f2-tag-cloud-widget/trunk/readme.txt

    r1773909 r2653149  
    33Tags: tags widget
    44Requires at least: 2.8
    5 Tested up to: 4.9
    6 Stable tag: trunk
     5Tested up to: 5.8.2
     6Stable tag: 0.3.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7272= 0.3.1 =
    7373Minor bug fix for a mis-applied filter.
     74
     75= 0.3.2 =
     76Removed deprecated 'create_function' call.
Note: See TracChangeset for help on using the changeset viewer.