Deprecate mu_options. Integrate directly into options.php. see #11644

git-svn-id: http://svn.automattic.com/wordpress/trunk@12825 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan
2010-01-25 21:33:49 +00:00
parent f3939dd8fd
commit 9469c9f02a
4 changed files with 47 additions and 38 deletions

View File

@@ -28,4 +28,12 @@ function wpmu_checkAvailableSpace() {
wp_die( __('Sorry, you must delete files before you can upload any more.') );
}
/**
* @deprecated 3.0
*/
function mu_options( $options ) {
_deprecated_function(__FUNCTION__, '3.0', '' );
return $options;
}
?>