mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 01:39:37 +01:00
ac160bcd14
The `wp-admin/media.php` file was introduced in [7262], then removed from the Media workflow in [21948]. This changeset finally deprecates it as it is not used anymore. Follow-up to [7262], [21948]. Props kebbet, costdev, SergeyBiryukov, jrf, antpb, audrasjb. Fixes #57612. See #6181, #21391, #57608. Built from https://develop.svn.wordpress.org/trunk@55647 git-svn-id: http://core.svn.wordpress.org/trunk@55159 1a063a9b-81f0-0310-95a4-ce76da25c4cd
13 lines
267 B
PHP
13 lines
267 B
PHP
<?php
|
|
/**
|
|
* Media management action handler.
|
|
*
|
|
* This file is deprecated, use 'wp-admin/upload.php' instead.
|
|
*
|
|
* @deprecated 6.3.0
|
|
* @package WordPress
|
|
* @subpackage Administration
|
|
*/
|
|
|
|
_deprecated_file( basename( __FILE__ ), '6.3.0', 'wp-admin/upload.php' );
|