Ticket #17520: 17520.patch
File 17520.patch, 4.3 KB (added by , 10 years ago) |
---|
-
wp-admin/css/dashboard-rtl.dev.css
62 62 margin-right: -60px; 63 63 } 64 64 /* Feeds */ 65 .rss-widget cite { 65 .rss-widget cite, 66 .rss-widget .rss-author { 66 67 text-align: left; 67 68 } 68 69 .rss-widget span.rss-date { -
wp-admin/css/dashboard.dev.css
380 380 margin-left: 3px; 381 381 } 382 382 383 .rss-widget cite { 383 .rss-widget cite, 384 .rss-widget .rss-author { 384 385 display: block; 385 386 text-align: right; 386 387 margin: 0 0 1em; 387 388 padding: 0; 388 389 } 389 390 390 .rss-widget cite:before { 391 .rss-widget cite:before, 392 .rss-widget .rss-author:before { 391 393 content: '\2014'; 392 394 } 393 395 -
wp-admin/includes/class-wp-plugin-install-list-table.php
182 182 183 183 $author = $plugin['author']; 184 184 if ( ! empty( $plugin['author'] ) ) 185 $author = ' <cite>' . sprintf( __( 'By %s' ), $author ) . '.</cite>'; 186 185 $author = ' ' . sprintf( __( 'By %s' ), $author ) . '.'; 187 186 $author = wp_kses( $author, $plugins_allowedtags ); 188 187 189 188 $action_links = array(); -
wp-admin/includes/dashboard.php
727 727 <div class="dashboard-comment-wrap"> 728 728 <h4 class="comment-meta"> 729 729 <?php printf( /* translators: 1: comment author, 2: post link, 3: notification if the comment is pending */__( 'From %1$s on %2$s%3$s' ), 730 '< cite class="comment-author">' . get_comment_author_link() . '</cite>', $comment_post_link.' '.$comment_link, ' <span class="approve">' . __( '[Pending]' ) . '</span>' ); ?>730 '<span class="comment-author">' . get_comment_author_link() . '</span>', $comment_post_link.' '.$comment_link, ' <span class="approve">' . __( '[Pending]' ) . '</span>' ); ?> 731 731 </h4> 732 732 733 733 <?php -
wp-admin/includes/plugin.php
142 142 143 143 $plugin_data['Description'] = wptexturize( $plugin_data['Description'] ); 144 144 if ( ! empty($plugin_data['Author']) ) 145 $plugin_data['Description'] .= ' <cite>' . sprintf( __('By %s'), $plugin_data['Author'] ) . '.</cite>';145 $plugin_data['Description'] .= ' ' . sprintf( __('By %s'), $plugin_data['Author'] ) . '.'; 146 146 } 147 147 148 148 // Sanitize all displayed data. Author and AuthorName sanitized above. -
wp-includes/comment-template.php
1352 1354 <?php endif; ?> 1353 1355 <div class="comment-author vcard"> 1354 1356 <?php if ($args['avatar_size'] != 0) echo get_avatar( $comment, $args['avatar_size'] ); ?> 1355 <?php printf(__('< cite class="fn">%s</cite> <span class="says">says:</span>'), get_comment_author_link()) ?>1357 <?php printf(__('<span class="fn">%s</span> <span class="says">says:</span>'), get_comment_author_link()) ?> 1356 1358 </div> 1357 1359 <?php if ($comment->comment_approved == '0') : ?> 1358 1360 <em class="comment-awaiting-moderation"><?php _e('Your comment is awaiting moderation.') ?></em> -
wp-includes/default-widgets.php
848 848 $author = $item->get_author(); 849 849 if ( is_object($author) ) { 850 850 $author = $author->get_name(); 851 $author = ' < cite>' . esc_html( strip_tags( $author ) ) . '</cite>';851 $author = ' <span class="rss-author">' . esc_html( strip_tags( $author ) ) . '</span>'; 852 852 } 853 853 } 854 854