mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-15 07:05:37 +01:00
1925595cd8
This brings more consistency with the other files having the same pattern: * `wp-admin/moderation.php` * `wp-admin/ms-admin.php` * `wp-admin/ms-edit.php` * `wp-admin/ms-sites.php` * `wp-admin/ms-themes.php` * `wp-admin/ms-upgrade-network.php` * `wp-admin/ms-users.php` Follow-up to [15481], [16847]. Props jigar-bhanushali, jorbin, johnbillion, Presskopp, rajinsharwar, audrasjb, SergeyBiryukov. Fixes #60926. Built from https://develop.svn.wordpress.org/trunk@58460 git-svn-id: http://core.svn.wordpress.org/trunk@57909 1a063a9b-81f0-0310-95a4-ce76da25c4cd
14 lines
229 B
PHP
14 lines
229 B
PHP
<?php
|
|
/**
|
|
* Multisite network settings administration panel.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Multisite
|
|
* @since 3.0.0
|
|
*/
|
|
|
|
require_once __DIR__ . '/admin.php';
|
|
|
|
wp_redirect( network_admin_url( 'settings.php' ) );
|
|
exit;
|