Set IFRAME_REQUEST for theme/plugin information iframe. Props SergeyBiryukov, fixes #15509

git-svn-id: http://svn.automattic.com/wordpress/trunk@16658 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
PeteMall 2010-12-01 18:53:37 +00:00
parent 98208ed882
commit 1065472816
4 changed files with 9 additions and 3 deletions

View File

@ -7,6 +7,9 @@
* @since 3.1.0
*/
if ( isset( $_GET['tab'] ) && ( 'plugin-information' == $_GET['tab'] ) )
define( 'IFRAME_REQUEST', true );
/** Load WordPress Administration Bootstrap */
require_once( './admin.php' );

View File

@ -7,6 +7,9 @@
* @since 3.1.0
*/
if ( isset( $_GET['tab'] ) && ( 'theme-information' == $_GET['tab'] ) )
define( 'IFRAME_REQUEST', true );
/** Load WordPress Administration Bootstrap */
require_once( './admin.php' );

View File

@ -6,8 +6,8 @@
* @subpackage Administration
*/
// TODO route this pages via a specific iframe handler instead of the do_action below
if ( isset( $_GET['tab'] ) && ( 'plugin-information' == $_GET['tab'] ) )
define('IFRAME_REQUEST' , true);
if ( !defined( 'IFRAME_REQUEST' ) && isset( $_GET['tab'] ) && ( 'plugin-information' == $_GET['tab'] ) )
define( 'IFRAME_REQUEST', true );
/** WordPress Administration Bootstrap */
require_once('./admin.php');

View File

@ -6,7 +6,7 @@
* @subpackage Administration
*/
if ( isset( $_GET['tab'] ) && ( 'theme-information' == $_GET['tab'] ) )
if ( !defined( 'IFRAME_REQUEST' ) && isset( $_GET['tab'] ) && ( 'theme-information' == $_GET['tab'] ) )
define( 'IFRAME_REQUEST', true );
/** WordPress Administration Bootstrap */