Version Description
- FIX: An issue where the plugin would sometimes break the media gallery.
Download this release
Release Info
Developer | junkcoder |
Plugin | AJAX Thumbnail Rebuild |
Version | 1.11 |
Comparing to | |
See all releases |
Code changes from version 1.10 to 1.11
- ajax-thumbnail-rebuild.php +2 -2
- readme.txt +5 -1
ajax-thumbnail-rebuild.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin URI: http://breiti.cc/wordpress/ajax-thumbnail-rebuild
|
4 |
Author: junkcoder
|
5 |
Author URI: http://breiti.cc
|
6 |
-
Version: 1.
|
7 |
Description: Rebuild all thumbnails
|
8 |
Max WP Version: 3.6.1
|
9 |
Text Domain: ajax-thumbnail-rebuild
|
@@ -27,7 +27,7 @@ class AjaxThumbnailRebuild {
|
|
27 |
|
28 |
function AjaxThumbnailRebuild() {
|
29 |
add_action( 'admin_menu', array(&$this, 'addAdminMenu') );
|
30 |
-
add_filter( 'attachment_fields_to_edit', array(&$this, 'addRebuildSingle') );
|
31 |
}
|
32 |
|
33 |
function addAdminMenu() {
|
3 |
Plugin URI: http://breiti.cc/wordpress/ajax-thumbnail-rebuild
|
4 |
Author: junkcoder
|
5 |
Author URI: http://breiti.cc
|
6 |
+
Version: 1.11
|
7 |
Description: Rebuild all thumbnails
|
8 |
Max WP Version: 3.6.1
|
9 |
Text Domain: ajax-thumbnail-rebuild
|
27 |
|
28 |
function AjaxThumbnailRebuild() {
|
29 |
add_action( 'admin_menu', array(&$this, 'addAdminMenu') );
|
30 |
+
add_filter( 'attachment_fields_to_edit', array(&$this, 'addRebuildSingle'), 10, 2 );
|
31 |
}
|
32 |
|
33 |
function addAdminMenu() {
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://breiti.cc/wordpress/ajax-thumbnail-rebuild/#donate
|
|
4 |
Tags: ajax, thumbnail, rebuild, regenerate, admin, image, photo
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 3.6.1
|
7 |
-
Stable tag: 1.
|
8 |
|
9 |
AJAX Thumbnail Rebuild allows you to rebuild all thumbnails at once without script timeouts on your server.
|
10 |
|
@@ -24,6 +24,10 @@ Upload the plugin to your blog, activate it, done. You can then rebuild all thum
|
|
24 |
|
25 |
== Changelog ==
|
26 |
|
|
|
|
|
|
|
|
|
27 |
= 1.10 =
|
28 |
|
29 |
* NEW: Rebuild thumbnails of single images on the media attachment page.
|
4 |
Tags: ajax, thumbnail, rebuild, regenerate, admin, image, photo
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 3.6.1
|
7 |
+
Stable tag: 1.11
|
8 |
|
9 |
AJAX Thumbnail Rebuild allows you to rebuild all thumbnails at once without script timeouts on your server.
|
10 |
|
24 |
|
25 |
== Changelog ==
|
26 |
|
27 |
+
= 1.11 =
|
28 |
+
|
29 |
+
* FIX: An issue where the plugin would sometimes break the media gallery.
|
30 |
+
|
31 |
= 1.10 =
|
32 |
|
33 |
* NEW: Rebuild thumbnails of single images on the media attachment page.
|