Making WordPress.org

Changeset 713


Ignore:
Timestamp:
06/19/2014 03:45:56 PM (11 years ago)
Author:
iandunn
Message:

Profiles Activity Handler: Remove site links from activity messages.

See #485

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/profiles.wordpress.org/public_html/wp-content/plugins/wporg-profiles-activity-handler/wporg-profiles-activity-handler.php

    r433 r713  
    165165            if ( '1' == $_POST['newTopic'] ) {
    166166                $action = sprintf(
    167                     __( 'Created a topic, <a href="%s">%s</a>, on the site <a href="%s">%s</a>', 'wporg' ),
     167                    __( 'Created a topic, <a href="%s">%s</a>, on the site %s', 'wporg' ),
    168168                    esc_url( $_POST['url'] ),
    169169                    $_POST['title'],
    170                     esc_url( $_POST['site_url'] ),
    171170                    $_POST['site']
    172171                );
     
    174173            } else {
    175174                $action = sprintf(
    176                     __( 'Posted a <a href="%s">reply</a> to %s, on the site <a href="%s">%s</a>', 'wporg' ),
     175                    __( 'Posted a <a href="%s">reply</a> to %s, on the site %s', 'wporg' ),
    177176                    esc_url( $_POST['url'] ),
    178177                    $_POST['title'],
    179                     esc_url( $_POST['site_url'] ),
    180178                    $_POST['site']
    181179                );
     
    441439                $item_id = $_POST['comment_id'];
    442440                $action  = sprintf(
    443                     __( 'Wrote a <a href="%s">comment</a> on the post %s, on the site <a href="%s">%s</a>', 'wporg' ),
     441                    __( 'Wrote a <a href="%s">comment</a> on the post %s, on the site %s', 'wporg' ),
    444442                    esc_url( $_POST['url'] ),
    445443                    $_POST['title'],
    446                     esc_url( $_POST['blog_url'] ),
    447444                    $_POST['blog']
    448445                );
     
    451448                $item_id = $_POST['post_id'];
    452449                $action  = sprintf(
    453                     __( 'Wrote a new post, <a href="%s">%s</a>, on the site <a href="%s">%s</a>', 'wporg' ),
     450                    __( 'Wrote a new post, <a href="%s">%s</a>, on the site %s', 'wporg' ),
    454451                    esc_url( $_POST['url'] ),
    455452                    $_POST['title'],
    456                     esc_url( $_POST['blog_url'] ),
    457453                    $_POST['blog']
    458454                );
Note: See TracChangeset for help on using the changeset viewer.