Make WordPress Core


Ignore:
Timestamp:
02/25/2014 05:09:09 PM (11 years ago)
Author:
nacin
Message:

Remove _relocate_children(), which has had no purpose for some time.

props SergeyBiryukov, scribu.
fixes #19367.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/deprecated.php

    r26690 r27261  
    11751175function wp_dashboard_secondary_control() {}
    11761176/**#@-*/
     1177
     1178/**
     1179 * This was once used to move child posts to a new parent.
     1180 *
     1181 * @since 2.3.0
     1182 * @deprecated 3.9.0
     1183 * @access private
     1184 *
     1185 * @param int $old_ID
     1186 * @param int $new_ID
     1187 */
     1188function _relocate_children( $old_ID, $new_ID ) {
     1189    _deprecated_function( __FUNCTION__, '3.9' );
     1190}
Note: See TracChangeset for help on using the changeset viewer.