Changeset 2653129
- Timestamp:
- 01/05/2022 01:30:19 PM (4 years ago)
- Location:
- f2-tumblr-widget
- Files:
-
- 4 edited
- 1 copied
-
tags/0.2.16 (copied) (copied from f2-tumblr-widget/trunk)
-
tags/0.2.16/README.txt (modified) (2 diffs)
-
tags/0.2.16/f2-tumblr.php (modified) (3 diffs)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/f2-tumblr.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
f2-tumblr-widget/tags/0.2.16/README.txt
r2310128 r2653129 4 4 Tags: widget, tumblr, feed 5 5 Requires at least: 3.3 6 Tested up to: 5. 4.17 Stable tag: 0.2.1 56 Tested up to: 5.8.2 7 Stable tag: 0.2.16 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 74 74 75 75 == Changelog == 76 77 = 0.2.16 = 78 * Removed deprecated 'create_function' call, which can cause failures for later PHP versions. 76 79 77 80 = 0.2.15 = -
f2-tumblr-widget/tags/0.2.16/f2-tumblr.php
r2310130 r2653129 9 9 * @license GPL-2.0+ 10 10 * @link http://www.fsquared.co.uk 11 * @copyright 2014-202 0fsquared11 * @copyright 2014-2022 fsquared 12 12 * 13 13 * @wordpress-plugin … … 15 15 * Plugin URI: http://www.fsquared.co.uk/software/f2-tumblr/ 16 16 * Description: Widget to display recent posts from a tumblr blog 17 * Version: 0.2.1 517 * Version: 0.2.16 18 18 * Author: fsquared limited 19 19 * Author URI: http://www.fsquared.co.uk … … 532 532 } // end class 533 533 534 add_action( 'widgets_init', create_function( '', 'register_widget("F2_Tumblr_Widget");' ));534 add_action( 'widgets_init', function() { register_widget("F2_Tumblr_Widget"); } ); -
f2-tumblr-widget/trunk/README.txt
r2310128 r2653129 4 4 Tags: widget, tumblr, feed 5 5 Requires at least: 3.3 6 Tested up to: 5. 4.17 Stable tag: 0.2.1 56 Tested up to: 5.8.2 7 Stable tag: 0.2.16 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 74 74 75 75 == Changelog == 76 77 = 0.2.16 = 78 * Removed deprecated 'create_function' call, which can cause failures for later PHP versions. 76 79 77 80 = 0.2.15 = -
f2-tumblr-widget/trunk/f2-tumblr.php
r2310130 r2653129 9 9 * @license GPL-2.0+ 10 10 * @link http://www.fsquared.co.uk 11 * @copyright 2014-202 0fsquared11 * @copyright 2014-2022 fsquared 12 12 * 13 13 * @wordpress-plugin … … 15 15 * Plugin URI: http://www.fsquared.co.uk/software/f2-tumblr/ 16 16 * Description: Widget to display recent posts from a tumblr blog 17 * Version: 0.2.1 517 * Version: 0.2.16 18 18 * Author: fsquared limited 19 19 * Author URI: http://www.fsquared.co.uk … … 532 532 } // end class 533 533 534 add_action( 'widgets_init', create_function( '', 'register_widget("F2_Tumblr_Widget");' ));534 add_action( 'widgets_init', function() { register_widget("F2_Tumblr_Widget"); } );
Note: See TracChangeset
for help on using the changeset viewer.