Ticket #339 (closed defect: fixed)

Opened 6 years ago

Last modified 6 years ago

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

Reported by: Kelson Owned by: 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

comment:1 Changed 6 years ago by Steph

  • Status changed from new to closed
  • Resolution set to fixed

Version 0.5 is now WP2.0 compatible.

Note: See TracTickets for help on using tickets.