Move functions to ms-deprecated.php
git-svn-id: https://develop.svn.wordpress.org/trunk@12929 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
10dd8c858f
commit
1d85da4417
@ -36,4 +36,25 @@ function mu_options( $options ) {
|
|||||||
return $options;
|
return $options;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated 3.0
|
||||||
|
*/
|
||||||
|
function activate_sitewide_plugin() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated 3.0
|
||||||
|
*/
|
||||||
|
function deactivate_sitewide_plugin( $plugin = false ) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated 3.0 is_network_only_plugin()
|
||||||
|
*/
|
||||||
|
function is_wpmu_sitewide_plugin( $file ) {
|
||||||
|
return is_network_only_plugin( $file );
|
||||||
|
}
|
||||||
|
|
||||||
?>
|
?>
|
@ -710,41 +710,6 @@ function avoid_blog_page_permalink_collision( $data, $postarr ) {
|
|||||||
}
|
}
|
||||||
add_filter( 'wp_insert_post_data', 'avoid_blog_page_permalink_collision', 10, 2 );
|
add_filter( 'wp_insert_post_data', 'avoid_blog_page_permalink_collision', 10, 2 );
|
||||||
|
|
||||||
/**
|
|
||||||
* @deprecated
|
|
||||||
*/
|
|
||||||
function activate_sitewide_plugin() {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @deprecated
|
|
||||||
*/
|
|
||||||
function deactivate_sitewide_plugin( $plugin = false ) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @deprecated is_network_only_plugin()
|
|
||||||
*/
|
|
||||||
function is_wpmu_sitewide_plugin( $file ) {
|
|
||||||
return is_network_only_plugin( $file );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @deprecated
|
|
||||||
*/
|
|
||||||
function check_is_wpmu_plugin_on_activate() {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @deprecated
|
|
||||||
*/
|
|
||||||
function check_wpmu_plugins_on_bulk_activate( $plugins ) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
function choose_primary_blog() {
|
function choose_primary_blog() {
|
||||||
global $current_user;
|
global $current_user;
|
||||||
?>
|
?>
|
||||||
|
Loading…
Reference in New Issue
Block a user