Changeset 713
- Timestamp:
- 06/19/2014 03:45:56 PM (11 years ago)
- 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 165 165 if ( '1' == $_POST['newTopic'] ) { 166 166 $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' ), 168 168 esc_url( $_POST['url'] ), 169 169 $_POST['title'], 170 esc_url( $_POST['site_url'] ),171 170 $_POST['site'] 172 171 ); … … 174 173 } else { 175 174 $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' ), 177 176 esc_url( $_POST['url'] ), 178 177 $_POST['title'], 179 esc_url( $_POST['site_url'] ),180 178 $_POST['site'] 181 179 ); … … 441 439 $item_id = $_POST['comment_id']; 442 440 $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' ), 444 442 esc_url( $_POST['url'] ), 445 443 $_POST['title'], 446 esc_url( $_POST['blog_url'] ),447 444 $_POST['blog'] 448 445 ); … … 451 448 $item_id = $_POST['post_id']; 452 449 $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' ), 454 451 esc_url( $_POST['url'] ), 455 452 $_POST['title'], 456 esc_url( $_POST['blog_url'] ),457 453 $_POST['blog'] 458 454 );
Note: See TracChangeset
for help on using the changeset viewer.