Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93

Warning: Undefined array key "page_file_edit_line" in /home/sportsfever/public_html/filemanger/edit_text_line.php on line 32
/home/sportsfe.../httpdocs/wp-inclu...
File: ms-load.php
);
[500] Fix | Delete
$msg .= ' ' . __( 'If you are still stuck with this message, then check that your database contains the following tables:' ) . '</p><ul>';
[501] Fix | Delete
foreach ( $wpdb->tables( 'global' ) as $t => $table ) {
[502] Fix | Delete
if ( 'sitecategories' === $t ) {
[503] Fix | Delete
continue;
[504] Fix | Delete
}
[505] Fix | Delete
$msg .= '<li>' . $table . '</li>';
[506] Fix | Delete
}
[507] Fix | Delete
$msg .= '</ul>';
[508] Fix | Delete
[509] Fix | Delete
wp_die( $msg, $title, array( 'response' => 500 ) );
[510] Fix | Delete
}
[511] Fix | Delete
[512] Fix | Delete
/**
[513] Fix | Delete
* This deprecated function formerly set the site_name property of the $current_site object.
[514] Fix | Delete
*
[515] Fix | Delete
* This function simply returns the object, as before.
[516] Fix | Delete
* The bootstrap takes care of setting site_name.
[517] Fix | Delete
*
[518] Fix | Delete
* @access private
[519] Fix | Delete
* @since 3.0.0
[520] Fix | Delete
* @deprecated 3.9.0 Use get_current_site() instead.
[521] Fix | Delete
*
[522] Fix | Delete
* @param WP_Network $current_site
[523] Fix | Delete
* @return WP_Network
[524] Fix | Delete
*/
[525] Fix | Delete
function get_current_site_name( $current_site ) {
[526] Fix | Delete
_deprecated_function( __FUNCTION__, '3.9.0', 'get_current_site()' );
[527] Fix | Delete
return $current_site;
[528] Fix | Delete
}
[529] Fix | Delete
[530] Fix | Delete
/**
[531] Fix | Delete
* This deprecated function managed much of the site and network loading in multisite.
[532] Fix | Delete
*
[533] Fix | Delete
* The current bootstrap code is now responsible for parsing the site and network load as
[534] Fix | Delete
* well as setting the global $current_site object.
[535] Fix | Delete
*
[536] Fix | Delete
* @access private
[537] Fix | Delete
* @since 3.0.0
[538] Fix | Delete
* @deprecated 3.9.0
[539] Fix | Delete
*
[540] Fix | Delete
* @global WP_Network $current_site
[541] Fix | Delete
*
[542] Fix | Delete
* @return WP_Network
[543] Fix | Delete
*/
[544] Fix | Delete
function wpmu_current_site() {
[545] Fix | Delete
global $current_site;
[546] Fix | Delete
_deprecated_function( __FUNCTION__, '3.9.0' );
[547] Fix | Delete
return $current_site;
[548] Fix | Delete
}
[549] Fix | Delete
[550] Fix | Delete
/**
[551] Fix | Delete
* Retrieves an object containing information about the requested network.
[552] Fix | Delete
*
[553] Fix | Delete
* @since 3.9.0
[554] Fix | Delete
* @deprecated 4.7.0 Use get_network()
[555] Fix | Delete
* @see get_network()
[556] Fix | Delete
*
[557] Fix | Delete
* @internal In 4.6.0, converted to use get_network()
[558] Fix | Delete
*
[559] Fix | Delete
* @param object|int $network The network's database row or ID.
[560] Fix | Delete
* @return WP_Network|false Object containing network information if found, false if not.
[561] Fix | Delete
*/
[562] Fix | Delete
function wp_get_network( $network ) {
[563] Fix | Delete
_deprecated_function( __FUNCTION__, '4.7.0', 'get_network()' );
[564] Fix | Delete
[565] Fix | Delete
$network = get_network( $network );
[566] Fix | Delete
if ( null === $network ) {
[567] Fix | Delete
return false;
[568] Fix | Delete
}
[569] Fix | Delete
[570] Fix | Delete
return $network;
[571] Fix | Delete
}
[572] Fix | Delete
[573] Fix | Delete
12
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function