Make WordPress Core

Changeset 8602


Ignore:
Timestamp:
08/09/2008 05:13:27 PM (16 years ago)
Author:
ryan
Message:

Fix tag duplication when saving posts with multiple tags that have custom slugs. Props mtekk and count_0. fixes #6593 see #6313

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.6/wp-admin/includes/taxonomy.php

    r7911 r8602  
    134134    foreach ( $tags as $tag )
    135135        $tag_names[] = $tag->name;
    136     $tags_to_edit = join( ', ', $tag_names );
     136    $tags_to_edit = join( ',', $tag_names );
    137137    $tags_to_edit = attribute_escape( $tags_to_edit );
    138138    $tags_to_edit = apply_filters( 'tags_to_edit', $tags_to_edit );
Note: See TracChangeset for help on using the changeset viewer.