Code Duplication    Length = 2-2 lines in 2 locations

wp-admin/includes/network.php 2 locations

@@ 544-545 (lines=2) @@
541
			'<code>' . $home_path . '</code>'
542
		);
543
		echo '</p>';
544
		if ( ! $subdomain_install && WP_CONTENT_DIR != ABSPATH . 'wp-content' )
545
			echo '<p><strong>' . __('Warning:') . ' ' . __( 'Subdirectory networks may not be fully compatible with custom wp-content directories.' ) . '</strong></p>';
546
		?>
547
		<textarea class="code" readonly="readonly" cols="100" rows="20"><?php echo esc_textarea( $web_config_file ); ?>
548
		</textarea></li>
@@ 584-585 (lines=2) @@
581
			'<code>' . $home_path . '</code>'
582
		);
583
		echo '</p>';
584
		if ( ! $subdomain_install && WP_CONTENT_DIR != ABSPATH . 'wp-content' )
585
			echo '<p><strong>' . __('Warning:') . ' ' . __( 'Subdirectory networks may not be fully compatible with custom wp-content directories.' ) . '</strong></p>';
586
		?>
587
		<textarea class="code" readonly="readonly" cols="100" rows="<?php echo substr_count( $htaccess_file, "\n" ) + 1; ?>">
588
<?php echo esc_textarea( $htaccess_file ); ?></textarea></li>