Making WordPress.org

Changeset 3912


Ignore:
Timestamp:
09/01/2016 05:38:44 PM (8 years ago)
Author:
coffee2code
Message:

Profiles Activity Handler: Wrap post and ticket titles in activity log entries in 'i' tag.

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

    r3911 r3912  
    435435                $args = array(
    436436                    'user_id'           => $user->ID,
    437                     'action'            => sprintf( 'Posted a reply to %s in %s Trac', $_POST['title'], $_POST['trac'] ),
     437                    'action'            => sprintf( 'Posted a reply to <i>%s</i> in %s Trac', $_POST['title'], $_POST['trac'] ),
    438438                    'content'           => $_POST['comment'],
    439439                    'component'         => 'tracs',
     
    624624                $item_id = $_POST['comment_id'];
    625625                $action  = sprintf(
    626                     'Wrote a <a href="%s">comment</a> on the post %s, on the site %s',
     626                    'Wrote a <a href="%s">comment</a> on the post <i>%s</i>, on the site %s',
    627627                    esc_url( $_POST['url'] ),
    628628                    $_POST['title'],
     
    633633                $item_id = $_POST['post_id'];
    634634                $action  = sprintf(
    635                     'Wrote a new post, <a href="%s">%s</a>, on the site %s',
     635                    'Wrote a new post, <i><a href="%s">%s</a></i>, on the site %s',
    636636                    esc_url( $_POST['url'] ),
    637637                    $_POST['title'],
Note: See TracChangeset for help on using the changeset viewer.