mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Props NikV for the initial patch. Fixes #29111. git-svn-id: https://develop.svn.wordpress.org/trunk@30228 602fd350-edb4-49c9-b593-d223f7449a82
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' );
|