mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 01:39:37 +01:00
99366f31d2
This changeset adds a `wp-admin/network/contribute.php` file to allow the Get Involved tab to work on Network Admin. Props courane01, ryelle, audrasjb. See #23348. Built from https://develop.svn.wordpress.org/trunk@56309 git-svn-id: http://core.svn.wordpress.org/trunk@55821 1a063a9b-81f0-0310-95a4-ce76da25c4cd
14 lines
255 B
PHP
14 lines
255 B
PHP
<?php
|
|
/**
|
|
* Network Contribute administration panel.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Multisite
|
|
* @since 6.3.0
|
|
*/
|
|
|
|
/** Load WordPress Administration Bootstrap */
|
|
require_once __DIR__ . '/admin.php';
|
|
|
|
require ABSPATH . 'wp-admin/contribute.php';
|