Changeset 16658
- Timestamp:
- 12/01/2010 06:53:37 PM (15 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 4 edited
-
network/plugin-install.php (modified) (1 diff)
-
network/theme-install.php (modified) (1 diff)
-
plugin-install.php (modified) (1 diff)
-
theme-install.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/network/plugin-install.php
r16272 r16658 8 8 */ 9 9 10 if ( isset( $_GET['tab'] ) && ( 'plugin-information' == $_GET['tab'] ) ) 11 define( 'IFRAME_REQUEST', true ); 12 10 13 /** Load WordPress Administration Bootstrap */ 11 14 require_once( './admin.php' ); -
trunk/wp-admin/network/theme-install.php
r16272 r16658 8 8 */ 9 9 10 if ( isset( $_GET['tab'] ) && ( 'theme-information' == $_GET['tab'] ) ) 11 define( 'IFRAME_REQUEST', true ); 12 10 13 /** Load WordPress Administration Bootstrap */ 11 14 require_once( './admin.php' ); -
trunk/wp-admin/plugin-install.php
r16221 r16658 7 7 */ 8 8 // TODO route this pages via a specific iframe handler instead of the do_action below 9 if ( isset( $_GET['tab'] ) && ( 'plugin-information' == $_GET['tab'] ) )10 define( 'IFRAME_REQUEST' , true);9 if ( !defined( 'IFRAME_REQUEST' ) && isset( $_GET['tab'] ) && ( 'plugin-information' == $_GET['tab'] ) ) 10 define( 'IFRAME_REQUEST', true ); 11 11 12 12 /** WordPress Administration Bootstrap */ -
trunk/wp-admin/theme-install.php
r16654 r16658 7 7 */ 8 8 9 if ( isset( $_GET['tab'] ) && ( 'theme-information' == $_GET['tab'] ) )9 if ( !defined( 'IFRAME_REQUEST' ) && isset( $_GET['tab'] ) && ( 'theme-information' == $_GET['tab'] ) ) 10 10 define( 'IFRAME_REQUEST', true ); 11 11
Note: See TracChangeset
for help on using the changeset viewer.