Code Duplication    Length = 2-2 lines in 2 locations

src/wp-admin/network/plugin-install.php 1 location

@@ 10-11 (lines=2) @@
7
 * @since 3.1.0
8
 */
9
10
if ( isset( $_GET['tab'] ) && ( 'plugin-information' == $_GET['tab'] ) )
11
	define( 'IFRAME_REQUEST', true );
12
13
/** Load WordPress Administration Bootstrap */
14
require_once( dirname( __FILE__ ) . '/admin.php' );

src/wp-admin/plugin-install.php 1 location

@@ 9-10 (lines=2) @@
6
 * @subpackage Administration
7
 */
8
// TODO route this pages via a specific iframe handler instead of the do_action below
9
if ( !defined( 'IFRAME_REQUEST' ) && isset( $_GET['tab'] ) && ( 'plugin-information' == $_GET['tab'] ) )
10
	define( 'IFRAME_REQUEST', true );
11
12
/**
13
 * WordPress Administration Bootstrap.