mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-03 09:21:03 +01:00
7d56be8521
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
14 lines
269 B
PHP
14 lines
269 B
PHP
<?php
|
|
/**
|
|
* User Dashboard Administration Screen
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Administration
|
|
* @since 3.1.0
|
|
*/
|
|
|
|
/** Load WordPress Administration Bootstrap */
|
|
require_once( dirname( __FILE__ ) . '/admin.php' );
|
|
|
|
require( ABSPATH . 'wp-admin/index.php' );
|