Ensure the requires for the admin bootstrap are documented in all wp-admin/user/ files.

Props NikV for the initial patch.
Fixes #29111.

Built from https://develop.svn.wordpress.org/trunk@30228


git-svn-id: http://core.svn.wordpress.org/trunk@30228 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2014-11-04 16:32:22 +00:00
parent 7081b906f4
commit 7d56be8521
4 changed files with 4 additions and 1 deletions

View File

@ -7,6 +7,7 @@
* @since 3.1.0
*/
/** Load WordPress Administration Bootstrap */
require_once( dirname( __FILE__ ) . '/admin.php' );
require( ABSPATH . 'wp-admin/index.php' );

View File

@ -7,6 +7,7 @@
* @since 3.1.0
*/
/** Load WordPress Administration Bootstrap */
require_once( dirname( __FILE__ ) . '/admin.php' );
require( ABSPATH . 'wp-admin/profile.php' );

View File

@ -7,6 +7,7 @@
* @since 3.1.0
*/
/** Load WordPress Administration Bootstrap */
require_once( dirname( __FILE__ ) . '/admin.php' );
require( ABSPATH . 'wp-admin/user-edit.php' );

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.1-alpha-30227';
$wp_version = '4.1-alpha-30228';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.