Making WordPress.org

Changeset 7760


Ignore:
Timestamp:
10/23/2018 05:02:36 PM (6 years ago)
Author:
coffee2code
Message:

developer.wordpress.org: Fix swapped arguments between sprintf() and __().

Props keesiemeijer.
See #3882.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/comments-edit.php

    r7754 r7760  
    3636$post_link   = sprintf( '<a href="%s">%s</a>', esc_url( $post_url ), $post_title );
    3737/* translators: %d: comment ID */
    38 $note_link   = sprintf( '<a href="%s">%s</a>', esc_url( $post_url . '#comment-' . $comment_id ), sprintf( __( 'note %d', $comment_id ), 'wporg' ) );
     38$note_link   = sprintf( '<a href="%s">%s</a>', esc_url( $post_url . '#comment-' . $comment_id ), sprintf( __( 'note %d', 'wporg' ), $comment_id ) );
    3939$type_link   = sprintf( '<a href="%s">%s</a>', esc_url( $type_url ), $type_label );
    4040
Note: See TracChangeset for help on using the changeset viewer.