mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
fd57b239d2
Always use dirname() or, once available, ABSPATH. props ketwaroo, hakre. fixes #17092. Built from https://develop.svn.wordpress.org/trunk@25616 git-svn-id: http://core.svn.wordpress.org/trunk@25533 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' );
|