Regenerate Thumbnails - Version 2.2.5

Version Description

Download this release

Release Info

Developer Viper007Bond
Plugin Icon 128x128 Regenerate Thumbnails
Version 2.2.5
Comparing to
See all releases

Code changes from version 2.2.4 to 2.2.5

Files changed (2) hide show
  1. readme.txt +5 -1
  2. regenerate-thumbnails.php +5 -5
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: Viper007Bond
3
  Donate link: http://www.viper007bond.com/donate/
4
  Tags: thumbnail, thumbnails
5
  Requires at least: 2.8
6
- Tested up to: 3.3
7
  Stable tag: trunk
8
 
9
  Allows you to regenerate your thumbnails after changing the thumbnail sizes.
@@ -31,6 +31,10 @@ See the [screenshots tab](http://wordpress.org/extend/plugins/regenerate-thumbna
31
 
32
  == ChangeLog ==
33
 
 
 
 
 
34
  = Version 2.2.4 =
35
 
36
  * Better AJAX response error handling in the JavaScript. This should fix a long-standing bug in this plugin. Props Hew Sutton.
3
  Donate link: http://www.viper007bond.com/donate/
4
  Tags: thumbnail, thumbnails
5
  Requires at least: 2.8
6
+ Tested up to: 4.4
7
  Stable tag: trunk
8
 
9
  Allows you to regenerate your thumbnails after changing the thumbnail sizes.
31
 
32
  == ChangeLog ==
33
 
34
+ = Version 2.2.5 =
35
+
36
+ * Updates relating to plugin language pack support.
37
+
38
  = Version 2.2.4 =
39
 
40
  * Better AJAX response error handling in the JavaScript. This should fix a long-standing bug in this plugin. Props Hew Sutton.
regenerate-thumbnails.php CHANGED
@@ -5,13 +5,14 @@
5
  Plugin Name: Regenerate Thumbnails
6
  Plugin URI: http://www.viper007bond.com/wordpress-plugins/regenerate-thumbnails/
7
  Description: Allows you to regenerate all thumbnails after changing the thumbnail sizes.
8
- Version: 2.2.4
9
- Author: Viper007Bond
10
  Author URI: http://www.viper007bond.com/
 
11
 
12
  **************************************************************************
13
 
14
- Copyright (C) 2008-2011 Viper007Bond
15
 
16
  This program is free software: you can redistribute it and/or modify
17
  it under the terms of the GNU General Public License as published by
@@ -34,8 +35,7 @@ class RegenerateThumbnails {
34
  // Plugin initialization
35
  function RegenerateThumbnails() {
36
  // Load up the localization file if we're using WordPress in a different language
37
- // Place it in this plugin's "localization" folder and name it "regenerate-thumbnails-[value in wp-config].mo"
38
- load_plugin_textdomain( 'regenerate-thumbnails', false, '/regenerate-thumbnails/localization' );
39
 
40
  add_action( 'admin_menu', array( &$this, 'add_admin_menu' ) );
41
  add_action( 'admin_enqueue_scripts', array( &$this, 'admin_enqueues' ) );
5
  Plugin Name: Regenerate Thumbnails
6
  Plugin URI: http://www.viper007bond.com/wordpress-plugins/regenerate-thumbnails/
7
  Description: Allows you to regenerate all thumbnails after changing the thumbnail sizes.
8
+ Version: 2.2.5
9
+ Author: Alex Mills (Viper007Bond)
10
  Author URI: http://www.viper007bond.com/
11
+ Text Domain: regenerate-thumbnails
12
 
13
  **************************************************************************
14
 
15
+ Copyright (C) 2008-2016 Alex Mills (Viper007Bond)
16
 
17
  This program is free software: you can redistribute it and/or modify
18
  it under the terms of the GNU General Public License as published by
35
  // Plugin initialization
36
  function RegenerateThumbnails() {
37
  // Load up the localization file if we're using WordPress in a different language
38
+ load_plugin_textdomain( 'regenerate-thumbnails' );
 
39
 
40
  add_action( 'admin_menu', array( &$this, 'add_admin_menu' ) );
41
  add_action( 'admin_enqueue_scripts', array( &$this, 'admin_enqueues' ) );