mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
7f894ae416
git-svn-id: http://svn.automattic.com/wordpress/trunk@8645 1a063a9b-81f0-0310-95a4-ce76da25c4cd
20 lines
275 B
PHP
20 lines
275 B
PHP
<?php
|
|
/**
|
|
* User Profile Administration Panel.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Administration
|
|
*/
|
|
|
|
/**
|
|
* This is a profile page.
|
|
*
|
|
* @since unknown
|
|
* @var bool
|
|
*/
|
|
define('IS_PROFILE_PAGE', true);
|
|
|
|
/** Load User Editing Page */
|
|
require_once('user-edit.php');
|
|
?>
|