mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 10:22:23 +01:00
7f29687a55
git-svn-id: http://core.svn.wordpress.org/branches/4.3@33847 1a063a9b-81f0-0310-95a4-ce76da25c4cd
19 lines
296 B
PHP
19 lines
296 B
PHP
<?php
|
|
/**
|
|
* User Profile Administration Screen.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Administration
|
|
*/
|
|
|
|
/**
|
|
* This is a profile page.
|
|
*
|
|
* @since 2.5.0
|
|
* @var bool
|
|
*/
|
|
define('IS_PROFILE_PAGE', true);
|
|
|
|
/** Load User Editing Page */
|
|
require_once( dirname( __FILE__ ) . '/user-edit.php' );
|