Version Description
Fix for taxonomy names that may contain characters other than lowercase and underscores (e.g. uppercase).
Download this release
Release Info
Developer | husobj |
Plugin | Taxonomy Images |
Version | 0.9.4 |
Comparing to | |
See all releases |
Code changes from version 0.9.3 to 0.9.4
- CHANGELOG.md +7 -1
- README.md +3 -0
- readme.txt +4 -1
- taxonomy-images.php +3 -3
CHANGELOG.md
CHANGED
@@ -4,6 +4,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
4 |
|
5 |
## [Unreleased]
|
6 |
|
|
|
|
|
|
|
|
|
|
|
7 |
## [0.9.3] - 2016-01-21
|
8 |
|
9 |
### Fixed
|
@@ -193,7 +198,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
193 |
### Added
|
194 |
- Original Release - Works with WordPress 2.9.1.
|
195 |
|
196 |
-
[Unreleased]: https://github.com/benhuson/Taxonomy-Images/compare/0.9.
|
|
|
197 |
[0.9.3]: https://github.com/benhuson/Taxonomy-Images/compare/0.9.2...0.9.3
|
198 |
[0.9.2]: https://github.com/benhuson/Taxonomy-Images/compare/0.9.1...0.9.2
|
199 |
[0.9.1]: https://github.com/benhuson/Taxonomy-Images/compare/0.9...0.9.1
|
4 |
|
5 |
## [Unreleased]
|
6 |
|
7 |
+
## [0.9.4] - 2016-02-05
|
8 |
+
|
9 |
+
### Fixed
|
10 |
+
- Fix for taxonomy names that may contain characters other than lowercase and underscores (e.g. uppercase).
|
11 |
+
|
12 |
## [0.9.3] - 2016-01-21
|
13 |
|
14 |
### Fixed
|
198 |
### Added
|
199 |
- Original Release - Works with WordPress 2.9.1.
|
200 |
|
201 |
+
[Unreleased]: https://github.com/benhuson/Taxonomy-Images/compare/0.9.4...HEAD
|
202 |
+
[0.9.4]: https://github.com/benhuson/Taxonomy-Images/compare/0.9.3...0.9.4
|
203 |
[0.9.3]: https://github.com/benhuson/Taxonomy-Images/compare/0.9.2...0.9.3
|
204 |
[0.9.2]: https://github.com/benhuson/Taxonomy-Images/compare/0.9.1...0.9.2
|
205 |
[0.9.1]: https://github.com/benhuson/Taxonomy-Images/compare/0.9...0.9.1
|
README.md
CHANGED
@@ -221,6 +221,9 @@ Installation
|
|
221 |
Upgrade Notice
|
222 |
--------------
|
223 |
|
|
|
|
|
|
|
224 |
### 0.9.3
|
225 |
Fix post permissions error when using media modal.
|
226 |
|
221 |
Upgrade Notice
|
222 |
--------------
|
223 |
|
224 |
+
### 0.9.4
|
225 |
+
Fix for taxonomy names that may contain characters other than lowercase and underscores (e.g. uppercase).
|
226 |
+
|
227 |
### 0.9.3
|
228 |
Fix post permissions error when using media modal.
|
229 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted
|
|
4 |
Tags: taxonomy, tag, category, term, image, upload, media
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.4.1
|
7 |
-
Stable tag: 0.9.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -209,6 +209,9 @@ The original author of this plugin, Michael Fields, released a handful of plugin
|
|
209 |
|
210 |
== Upgrade Notice ==
|
211 |
|
|
|
|
|
|
|
212 |
= 0.9.3 =
|
213 |
Fix post permissions error when using media modal.
|
214 |
|
4 |
Tags: taxonomy, tag, category, term, image, upload, media
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.4.1
|
7 |
+
Stable tag: 0.9.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
209 |
|
210 |
== Upgrade Notice ==
|
211 |
|
212 |
+
= 0.9.4 =
|
213 |
+
Fix for taxonomy names that may contain characters other than lowercase and underscores (e.g. uppercase).
|
214 |
+
|
215 |
= 0.9.3 =
|
216 |
Fix post permissions error when using media modal.
|
217 |
|
taxonomy-images.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: Taxonomy Images
|
5 |
Plugin URI: https://github.com/benhuson/Taxonomy-Images
|
6 |
Description: Associate images from your media library to categories, tags and custom taxonomies.
|
7 |
-
Version: 0.9.
|
8 |
Author: Michael Fields, Ben Huson
|
9 |
Author URI: https://github.com/benhuson
|
10 |
License: GNU General Public License v2 or later
|
@@ -40,7 +40,7 @@ require_once( trailingslashit( dirname( __FILE__ ) ) . 'public-filters.php' );
|
|
40 |
* @alter 0.7.4
|
41 |
*/
|
42 |
function taxonomy_image_plugin_version() {
|
43 |
-
return '0.9.
|
44 |
}
|
45 |
|
46 |
|
@@ -459,7 +459,7 @@ function taxonomy_image_plugin_get_term_info( $tt_id ) {
|
|
459 |
}
|
460 |
|
461 |
if ( isset( $data[0]->taxonomy ) ) {
|
462 |
-
$cache[ $tt_id ]['taxonomy'] =
|
463 |
}
|
464 |
|
465 |
if ( isset( $cache[ $tt_id ] ) ) {
|
4 |
Plugin Name: Taxonomy Images
|
5 |
Plugin URI: https://github.com/benhuson/Taxonomy-Images
|
6 |
Description: Associate images from your media library to categories, tags and custom taxonomies.
|
7 |
+
Version: 0.9.4
|
8 |
Author: Michael Fields, Ben Huson
|
9 |
Author URI: https://github.com/benhuson
|
10 |
License: GNU General Public License v2 or later
|
40 |
* @alter 0.7.4
|
41 |
*/
|
42 |
function taxonomy_image_plugin_version() {
|
43 |
+
return '0.9.4';
|
44 |
}
|
45 |
|
46 |
|
459 |
}
|
460 |
|
461 |
if ( isset( $data[0]->taxonomy ) ) {
|
462 |
+
$cache[ $tt_id ]['taxonomy'] = $data[0]->taxonomy;
|
463 |
}
|
464 |
|
465 |
if ( isset( $cache[ $tt_id ] ) ) {
|