Version Description
- FIX: An issue where rebuilding thumbnails in the media gallery would not work
Download this release
Release Info
Developer | junkcoder |
Plugin | AJAX Thumbnail Rebuild |
Version | 1.12 |
Comparing to | |
See all releases |
Code changes from version 1.11 to 1.12
- ajax-thumbnail-rebuild.php +2 -3
- readme.txt +7 -2
ajax-thumbnail-rebuild.php
CHANGED
@@ -3,9 +3,9 @@
|
|
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.
|
9 |
Text Domain: ajax-thumbnail-rebuild
|
10 |
|
11 |
This program is free software; you can redistribute it and/or modify
|
@@ -43,7 +43,6 @@ class AjaxThumbnailRebuild {
|
|
43 |
* @return array
|
44 |
*/
|
45 |
function addRebuildSingle($fields, $post) {
|
46 |
-
global $post;
|
47 |
$thumbnails = array();
|
48 |
foreach ( ajax_thumbnail_rebuild_get_sizes() as $s )
|
49 |
$thumbnails[] = 'thumbnails[]='.$s['name'];
|
3 |
Plugin URI: http://breiti.cc/wordpress/ajax-thumbnail-rebuild
|
4 |
Author: junkcoder
|
5 |
Author URI: http://breiti.cc
|
6 |
+
Version: 1.12
|
7 |
Description: Rebuild all thumbnails
|
8 |
+
Max WP Version: 3.9
|
9 |
Text Domain: ajax-thumbnail-rebuild
|
10 |
|
11 |
This program is free software; you can redistribute it and/or modify
|
43 |
* @return array
|
44 |
*/
|
45 |
function addRebuildSingle($fields, $post) {
|
|
|
46 |
$thumbnails = array();
|
47 |
foreach ( ajax_thumbnail_rebuild_get_sizes() as $s )
|
48 |
$thumbnails[] = 'thumbnails[]='.$s['name'];
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: junkcoder
|
|
3 |
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.
|
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,11 @@ Upload the plugin to your blog, activate it, done. You can then rebuild all thum
|
|
24 |
|
25 |
== Changelog ==
|
26 |
|
|
|
|
|
|
|
|
|
|
|
27 |
= 1.11 =
|
28 |
|
29 |
* FIX: An issue where the plugin would sometimes break the media gallery.
|
3 |
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.9
|
7 |
+
Stable tag: 1.12
|
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.12 =
|
28 |
+
|
29 |
+
* FIX: An issue where rebuilding thumbnails in the media gallery
|
30 |
+
would not work
|
31 |
+
|
32 |
= 1.11 =
|
33 |
|
34 |
* FIX: An issue where the plugin would sometimes break the media gallery.
|