Ticket #27623: 27623.4.diff
| File 27623.4.diff, 2.1 KB (added by , 10 years ago) |
|---|
-
wp-admin/network/themes.php
236 236 237 237 <div class="wrap"> 238 238 <h1><?php echo esc_html( $title ); if ( current_user_can('install_themes') ) { ?> <a href="theme-install.php" class="page-title-action"><?php echo esc_html_x('Add New', 'theme'); ?></a><?php } 239 if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { 240 /* translators: %s: search keywords */ 241 printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( $s ) ); 242 } 239 $s = trim( $s ); 240 if ( ! empty( $s ) ) { 241 printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( $s ) ); ?> 242 } 243 243 ?> 244 244 </h1> 245 245 -
wp-admin/plugins.php
482 482 <?php 483 483 } 484 484 485 if ( strlen( $s ) ) { 486 /* translators: %s: search keywords */ 487 printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( urldecode( $s ) ) ); 485 $s = trim( $s ); 486 if ( ! empty( $s ) ) { 487 printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( $s ) ); ?> 488 488 } 489 489 ?> 490 490 </h1> -
wp-admin/users.php
489 489 <a href="<?php echo admin_url( 'user-new.php' ); ?>" class="page-title-action"><?php echo esc_html_x( 'Add Existing', 'user' ); ?></a> 490 490 <?php } 491 491 492 if ( strlen( $usersearch ) ) { 493 /* translators: %s: search keywords */ 494 printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( $usersearch ) );495 } 492 $s = trim( $usersearch ); 493 if ( ! empty( $usersearch ) ) { 494 printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( $usersearch ) ); ?> 495 } 496 496 ?> 497 497 </h1> 498 498
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)