Skip to content

Commit 15e4edb

Browse files
committed
Multisite: Add missing "contribute.php" file to User Dashboard.
This changeset adds a `wp-admin/user/contribute.php` file to allow the "Get Involved" link to work on User Admin. This changeset prevents an unintended 404 that occurs when a logged-in user clicks the "Get Involved" link (located in the menu-bar) from inside of the multisite-specific User Dashboard. Related: r56220, r56309, #23348. Props ignatiusjeroe, audrasjb, tobiasbg. Fixes #61122. git-svn-id: https://develop.svn.wordpress.org/trunk@58118 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 473e255 commit 15e4edb

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

src/wp-admin/user/contribute.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
/**
3+
* User Dashboard Contribute administration panel.
4+
*
5+
* @package WordPress
6+
* @subpackage Administration
7+
* @since 6.6.0
8+
*/
9+
10+
/** Load WordPress Administration Bootstrap */
11+
require_once __DIR__ . '/admin.php';
12+
13+
require ABSPATH . 'wp-admin/contribute.php';

0 commit comments

Comments
 (0)