Plugin Directory

Changeset 2008805


Ignore:
Timestamp:
01/09/2019 12:51:14 AM (7 years ago)
Author:
is2ei
Message:

0.1.1

Location:
wp-typetalk
Files:
24 added
1 edited

Legend:

Unmodified
Added
Removed
  • wp-typetalk/trunk/includes/event-manager.php

    r2005484 r2008805  
    117117                        return sprintf(
    118118                            /* translators: 1) post author, 2) post title, and 3) URL. */
    119                             __( '[New post published by %1$s](%2$s|%3$s)', 'typetalk' ) . "\n" .
     119                            __( 'New post published by %1$s' . "\n" . '[%2$s](%3$s)', 'typetalk' ) . "\n" .
    120120                            '> %4$s',
    121121                            get_the_author_meta( 'display_name', $post->post_author ),
     122                            html_entity_decode( get_the_title( $post->ID ), ENT_QUOTES, get_bloginfo( 'charset' ) ),
    122123                            get_permalink( $post->ID ),
    123                             html_entity_decode( get_the_title( $post->ID ), ENT_QUOTES, get_bloginfo( 'charset' ) ),
    124124                            $txt
    125125                        );
     
    153153                        return sprintf(
    154154                            /* translators: 1) post author, 2) post title and 3) URL. */
    155                             __( '[New post by %1$s needs review](%2$s|%3$s)', 'typetalk' ) . "\n" .
     155                            __( 'New post by %1$s needs review' . "\n" . '[%2$s](%3$s)', 'typetalk' ) . "\n" .
    156156                            '> %4$s',
    157157                            get_the_author_meta( 'display_name', $post->post_author ),
     158                            html_entity_decode( get_the_title( $post->ID ), ENT_QUOTES, get_bloginfo( 'charset' ) ),
    158159                            admin_url( sprintf( 'post.php?post=%d&action=edit', $post->ID ) ),
    159                             html_entity_decode( get_the_title( $post->ID ), ENT_QUOTES, get_bloginfo( 'charset' ) ),
    160160                            $txt
    161161                        );
Note: See TracChangeset for help on using the changeset viewer.