Version Description
Fixed in 'Set, replace, remove': unnecessary HTML escaping
Download this release
Release Info
Developer | Hinjiriyo |
Plugin | Quick Featured Images |
Version | 13.0.1 |
Comparing to | |
See all releases |
Code changes from version 13.0 to 13.0.1
README.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: audios, author, categories, custom post types, custom taxonomies, date, featured images, filter, image size, nextgen, remove, taxonomies, thumbnails, videos, posts, pages
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.8
|
7 |
-
Stable tag: 13.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -279,6 +279,9 @@ If you want to contribute a translation of the plugin in your language it would
|
|
279 |
|
280 |
== Changelog ==
|
281 |
|
|
|
|
|
|
|
282 |
= 13.0 =
|
283 |
* Added in 'Set, replace, remove': action for removing database entries of featured images without existing image files
|
284 |
* Added in image column: check for existence of image file and, if not available, Delete link
|
@@ -441,6 +444,9 @@ Added spanish translation for the main texts of the plugin
|
|
441 |
|
442 |
== Upgrade Notice ==
|
443 |
|
|
|
|
|
|
|
444 |
= 13.0 =
|
445 |
Added actions for removing database entries of featured images without existing image files
|
446 |
|
4 |
Tags: audios, author, categories, custom post types, custom taxonomies, date, featured images, filter, image size, nextgen, remove, taxonomies, thumbnails, videos, posts, pages
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.8
|
7 |
+
Stable tag: 13.0.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
279 |
|
280 |
== Changelog ==
|
281 |
|
282 |
+
= 13.0.1 =
|
283 |
+
Fixed in 'Set, replace, remove': unnecessary HTML escaping
|
284 |
+
|
285 |
= 13.0 =
|
286 |
* Added in 'Set, replace, remove': action for removing database entries of featured images without existing image files
|
287 |
* Added in image column: check for existence of image file and, if not available, Delete link
|
444 |
|
445 |
== Upgrade Notice ==
|
446 |
|
447 |
+
= 13.0.1 =
|
448 |
+
Fixed unnecessary HTML escaping
|
449 |
+
|
450 |
= 13.0 =
|
451 |
Added actions for removing database entries of featured images without existing image files
|
452 |
|
admin/class-quick-featured-images-admin.php
CHANGED
@@ -19,7 +19,7 @@
|
|
19 |
*
|
20 |
* @var string
|
21 |
*/
|
22 |
-
protected $plugin_version = '13.0';
|
23 |
|
24 |
/**
|
25 |
* Instance of this class.
|
19 |
*
|
20 |
* @var string
|
21 |
*/
|
22 |
+
protected $plugin_version = '13.0.1';
|
23 |
|
24 |
/**
|
25 |
* Instance of this class.
|
admin/views/section_results.php
CHANGED
@@ -40,7 +40,7 @@ if ( $results ) {
|
|
40 |
// post title, else default title
|
41 |
$post_title = $result[ 1 ] ? esc_html( $result[ 1 ] ) : $default_title;
|
42 |
// check if no featured image for the post, else add default
|
43 |
-
$img = $result[ 2 ] ?
|
44 |
// get the result message per post
|
45 |
$msg = $result[ 3 ] ? $label_changed : $label_unchanged;
|
46 |
// alternating row colors with error class if error
|
40 |
// post title, else default title
|
41 |
$post_title = $result[ 1 ] ? esc_html( $result[ 1 ] ) : $default_title;
|
42 |
// check if no featured image for the post, else add default
|
43 |
+
$img = $result[ 2 ] ? $result[ 2 ] : $label_no_image;
|
44 |
// get the result message per post
|
45 |
$msg = $result[ 3 ] ? $label_changed : $label_unchanged;
|
46 |
// alternating row colors with error class if error
|
quick-featured-images.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
* Plugin Name: Quick Featured Images
|
11 |
* Plugin URI: http://wordpress.org/plugins/quick-featured-images
|
12 |
* Description: Your time-saving Swiss Army Knife for featured images: Set, replace and delete them in bulk, in posts lists and set default images for future posts.
|
13 |
-
* Version: 13.0
|
14 |
* Author: Martin Stehle
|
15 |
* Author URI: http://stehle-internet.de
|
16 |
* Text Domain: quick-featured-images
|
10 |
* Plugin Name: Quick Featured Images
|
11 |
* Plugin URI: http://wordpress.org/plugins/quick-featured-images
|
12 |
* Description: Your time-saving Swiss Army Knife for featured images: Set, replace and delete them in bulk, in posts lists and set default images for future posts.
|
13 |
+
* Version: 13.0.1
|
14 |
* Author: Martin Stehle
|
15 |
* Author URI: http://stehle-internet.de
|
16 |
* Text Domain: quick-featured-images
|