Code Duplication    Length = 4-4 lines in 3 locations

wp-admin/network/users.php 1 location

@@ 215-218 (lines=4) @@
212
		<a href="<?php echo network_admin_url('user-new.php'); ?>" class="page-title-action"><?php echo esc_html_x( 'Add New', 'user' ); ?></a><?php
213
	endif;
214
215
	if ( strlen( $usersearch ) ) {
216
		/* translators: %s: search keywords */
217
		printf( '<span class="subtitle">' . __( 'Search results for &#8220;%s&#8221;' ) . '</span>', esc_html( $usersearch ) );
218
	}
219
	?>
220
	</h1>
221

wp-admin/plugins.php 1 location

@@ 486-489 (lines=4) @@
483
<?php
484
}
485
486
if ( strlen( $s ) ) {
487
	/* translators: %s: search keywords */
488
	printf( '<span class="subtitle">' . __( 'Search results for &#8220;%s&#8221;' ) . '</span>', esc_html( urldecode( $s ) ) );
489
}
490
?>
491
</h1>
492

wp-admin/users.php 1 location

@@ 492-495 (lines=4) @@
489
	<a href="<?php echo admin_url( 'user-new.php' ); ?>" class="page-title-action"><?php echo esc_html_x( 'Add Existing', 'user' ); ?></a>
490
<?php }
491
492
if ( strlen( $usersearch ) ) {
493
	/* translators: %s: search keywords */
494
	printf( '<span class="subtitle">' . __( 'Search results for &#8220;%s&#8221;' ) . '</span>', esc_html( $usersearch ) );
495
}
496
?>
497
</h1>
498