Changeset 28633 for trunk/src/wp-admin/includes/dashboard.php
- Timestamp:
- 05/30/2014 05:57:51 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/dashboard.php
r28592 r28633 602 602 <?php 603 603 else : 604 switch ( $comment->comment_type ) :605 case 'pingback' :606 $type = __( 'Pingback' );607 break;608 case 'trackback' :609 $type = __( 'Trackback' );610 break;611 default :612 $type = ucwords( $comment->comment_type );613 endswitch;604 switch ( $comment->comment_type ) { 605 case 'pingback' : 606 $type = __( 'Pingback' ); 607 break; 608 case 'trackback' : 609 $type = __( 'Trackback' ); 610 break; 611 default : 612 $type = ucwords( $comment->comment_type ); 613 } 614 614 $type = esc_html( $type ); 615 615 ?>
Note: See TracChangeset
for help on using the changeset viewer.