Rich Text Tags - Version 1.4.1

Version Description

  • Added support for WordPress 3.3 (thanks, fountaininternet)
Download this release

Release Info

Developer katzwebdesign
Plugin Icon 128x128 Rich Text Tags
Version 1.4.1
Comparing to
See all releases

Code changes from version 1.4 to 1.4.1

Files changed (2) hide show
  1. readme.txt +4 -1
  2. rich-text-tags.php +2 -1
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: katzwebdesign
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=zackkatz%40gmail%2ecom&item_name=Rich%20Text%20Tags&no_shipping=0&no_note=1&tax=0&currency_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8
4
  Tags: tag, tags, taxonomy, taxonomies, category, categories, category description, rich text category, editor, rich text, description, tag description, taxonomy description, rich text, wysiwyg, tinyMCE, SEO, search engine optimization
5
  Requires at least: 2.6
6
- Tested up to: 3.2.1
7
  Stable tag: trunk
8
 
9
  The Rich Text Tags Plugin allows you to edit tag, category, and taxonomy descriptions using Wordpress' built in WYSIWYG editor.
@@ -35,6 +35,9 @@ Use the PHP functions `tag_description()` and `category_description()` in your t
35
 
36
  == Upgrade Notice ==
37
 
 
 
 
38
  = 1.4 =
39
  * Improved functionality in WordPress 3.2.1
40
  * Fixed `First argument is expected to be a valid callback, 'wp_tiny_mce_preload_dialogs'` error (<a href="http://wordpress.org/support/topic/625561">issue <a href="http://wordpress.org/support/topic/625561">625561</a> and <a href="http://wordpress.org/support/topic/603480">603480</a>
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=zackkatz%40gmail%2ecom&item_name=Rich%20Text%20Tags&no_shipping=0&no_note=1&tax=0&currency_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8
4
  Tags: tag, tags, taxonomy, taxonomies, category, categories, category description, rich text category, editor, rich text, description, tag description, taxonomy description, rich text, wysiwyg, tinyMCE, SEO, search engine optimization
5
  Requires at least: 2.6
6
+ Tested up to: 3.3
7
  Stable tag: trunk
8
 
9
  The Rich Text Tags Plugin allows you to edit tag, category, and taxonomy descriptions using Wordpress' built in WYSIWYG editor.
35
 
36
  == Upgrade Notice ==
37
 
38
+ = 1.4.1 =
39
+ * Added support for WordPress 3.3 (thanks, <a href="http://wordpress.org/support/topic/plugin-rich-text-tags-tinymce-editor-not-loading-in-wp-33-beta4" rel="nofollow">fountaininternet</a>)
40
+
41
  = 1.4 =
42
  * Improved functionality in WordPress 3.2.1
43
  * Fixed `First argument is expected to be a valid callback, 'wp_tiny_mce_preload_dialogs'` error (<a href="http://wordpress.org/support/topic/625561">issue <a href="http://wordpress.org/support/topic/625561">625561</a> and <a href="http://wordpress.org/support/topic/603480">603480</a>
rich-text-tags.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Rich Text Tags, Categories, and Taxonomies
4
  Plugin URI: http://www.seodenver.com/rich-text-tags/
5
  Description: This plugin offers rich text editing capabilities for descriptions of tags, categories, and taxonomies.
6
  Author: Katz Web Services, Inc.
7
- Version: 1.4
8
  Author URI: http://www.katzwebservices.com
9
  */
10
  /*
@@ -110,6 +110,7 @@ function kws_rich_text_tags() {
110
  function kws_rt_taxonomy_load_mce() {
111
  $kwsScript = WP_PLUGIN_URL.'/'.str_replace(basename( __FILE__),"",plugin_basename(__FILE__)).'kws_rt_taxonomy.js';
112
  wp_enqueue_style( 'thickbox' );
 
113
  wp_enqueue_script('kws_rte',$kwsScript);
114
  }
115
  function kws_rt_taxonomy_scripts() {
4
  Plugin URI: http://www.seodenver.com/rich-text-tags/
5
  Description: This plugin offers rich text editing capabilities for descriptions of tags, categories, and taxonomies.
6
  Author: Katz Web Services, Inc.
7
+ Version: 1.4.1
8
  Author URI: http://www.katzwebservices.com
9
  */
10
  /*
110
  function kws_rt_taxonomy_load_mce() {
111
  $kwsScript = WP_PLUGIN_URL.'/'.str_replace(basename( __FILE__),"",plugin_basename(__FILE__)).'kws_rt_taxonomy.js';
112
  wp_enqueue_style( 'thickbox' );
113
+ wp_enqueue_style('editor-buttons');
114
  wp_enqueue_script('kws_rte',$kwsScript);
115
  }
116
  function kws_rt_taxonomy_scripts() {