Rich Text Tags - Version 1.7.3

Version Description

  • Fixed "Undefined variable" PHP warning referenced here
Download this release

Release Info

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

Code changes from version 1.7.2 to 1.7.3

Files changed (2) hide show
  1. readme.txt +7 -3
  2. rich-text-tags.php +6 -7
readme.txt CHANGED
@@ -3,15 +3,13 @@ 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, terms, bio, biography, user, user data, user description
5
  Requires at least: 3.3
6
- Tested up to: 3.4.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.
10
 
11
  == Description ==
12
 
13
- > __Support for this plugin & documentation on the <a href="http://www.seodenver.com/rich-text-tags/">official plugin page</a>__
14
-
15
  ### A TinyMCE Editor for Tags, Categories, and Taxonomies ###
16
  The Rich Text Tags Plugin allows you to edit tag descriptions, category descriptions, and taxonomy descriptions using Wordpress' built in rich-text editor. Switch between WYSIWYG and HTML editing modes with the click of a link. Use the WordPress uploader to insert images from your computer or site's Media Library.
17
 
@@ -37,6 +35,9 @@ Thanks, it's by <a href="http://www.flickr.com/photos/laurenmanning/5659535988/"
37
 
38
  == Upgrade Notice ==
39
 
 
 
 
40
  = 1.7.2 =
41
  * Re-added shortened term descriptions in Term view.
42
 
@@ -103,6 +104,9 @@ Thanks, it's by <a href="http://www.flickr.com/photos/laurenmanning/5659535988/"
103
 
104
  == Changelog ==
105
 
 
 
 
106
  = 1.7.2 =
107
  * Re-added shortened term descriptions in Term view.
108
 
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, terms, bio, biography, user, user data, user description
5
  Requires at least: 3.3
6
+ Tested up to: 3.6
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.
10
 
11
  == Description ==
12
 
 
 
13
  ### A TinyMCE Editor for Tags, Categories, and Taxonomies ###
14
  The Rich Text Tags Plugin allows you to edit tag descriptions, category descriptions, and taxonomy descriptions using Wordpress' built in rich-text editor. Switch between WYSIWYG and HTML editing modes with the click of a link. Use the WordPress uploader to insert images from your computer or site's Media Library.
15
 
35
 
36
  == Upgrade Notice ==
37
 
38
+ = 1.7.3 =
39
+ * Fixed "Undefined variable" PHP warning <a href="http://wordpress.org/support/topic/plugin-rich-text-tags-debug-error-in-your-plugin">referenced here</a>
40
+
41
  = 1.7.2 =
42
  * Re-added shortened term descriptions in Term view.
43
 
104
 
105
  == Changelog ==
106
 
107
+ = 1.7.3 =
108
+ * Fixed "Undefined variable" PHP warning <a href="http://wordpress.org/support/topic/plugin-rich-text-tags-debug-error-in-your-plugin">referenced here</a>
109
+
110
  = 1.7.2 =
111
  * Re-added shortened term descriptions in Term view.
112
 
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.7.2
8
  Author URI: http://www.katzwebservices.com
9
  */
10
 
@@ -162,11 +162,10 @@ function kws_add_form($object = ''){
162
  ?>
163
  <tr class="form-field">
164
  <th scope="row" valign="top"><label for="description"><?php _ex('Description', 'Taxonomy Description'); ?></label></th>
165
- <td><?php wp_editor($content, $editor_id,
166
- array(
167
- 'textarea_name' => $editor_selector,
168
- 'editor_css' => $css,
169
- )); ?><br />
170
  <span class="description"><?php _e('The description is not prominent by default, however some themes may show it.'); ?></span></td>
171
  </tr>
172
  <?php
@@ -200,4 +199,4 @@ function kws_shorten_term_description($terms = array(), $taxonomies = null, $arg
200
  }
201
  }
202
  return $terms;
203
- }
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.7.3
8
  Author URI: http://www.katzwebservices.com
9
  */
10
 
162
  ?>
163
  <tr class="form-field">
164
  <th scope="row" valign="top"><label for="description"><?php _ex('Description', 'Taxonomy Description'); ?></label></th>
165
+ <td><?php wp_editor($content, $editor_id, array(
166
+ 'textarea_name' => $editor_selector,
167
+ 'editor_css' => kws_rtt_get_css(),
168
+ )); ?><br />
 
169
  <span class="description"><?php _e('The description is not prominent by default, however some themes may show it.'); ?></span></td>
170
  </tr>
171
  <?php
199
  }
200
  }
201
  return $terms;
202
+ }