Ticket #339 (closed defect: fixed)

Opened 3 years ago

Last modified 3 years ago

Bunny's Technorati Tags loses tags when editing posts in Wordpress 2.0

Reported by: Kelson Assigned to: steph
Priority: normal Component: bunny-tags
Severity: normal Keywords:
Cc:

Description

Bunny's Technorati Tags appears to work in every way except when editing an existing post. The Tags input box does not pick up the existing tags.

Apparently $postdata->ID no longer works to retrieve the current post ID while editing a post. I changed the first two lines in add_tags_textinput() to use $post_ID instead, and the field now retrieves the current tags.

global $post_ID; $tags = get_post_meta($post_ID, 'tags', true);

Change History

01/03/06 13:00:38 changed by Steph

  • status changed from new to closed.
  • resolution set to fixed.

Version 0.5 is now WP2.0 compatible.