mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 09:49:37 +01:00
e3b46b25d3
git-svn-id: http://svn.automattic.com/wordpress/trunk@19712 1a063a9b-81f0-0310-95a4-ce76da25c4cd
19 lines
273 B
PHP
19 lines
273 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('./user-edit.php');
|