Fix deprecate spelling. Props filosofo. fixes #11758

git-svn-id: http://svn.automattic.com/wordpress/trunk@12606 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2010-01-06 20:05:44 +00:00
parent 336bec5923
commit 8a42022e27
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
if( isset( $current_site ) && isset( $current_blog ) ) if( isset( $current_site ) && isset( $current_blog ) )
return; return;
// depreciated // deprecated
$wpmuBaseTablePrefix = $table_prefix; $wpmuBaseTablePrefix = $table_prefix;
$domain = addslashes( $_SERVER['HTTP_HOST'] ); $domain = addslashes( $_SERVER['HTTP_HOST'] );

View File

@ -202,7 +202,7 @@ function validate_another_blog_signup() {
} }
$public = (int) $_POST['blog_public']; $public = (int) $_POST['blog_public'];
$meta = apply_filters('signup_create_blog_meta', array ('lang_id' => 1, 'public' => $public)); // depreciated $meta = apply_filters('signup_create_blog_meta', array ('lang_id' => 1, 'public' => $public)); // deprecated
$meta = apply_filters( "add_signup_meta", $meta ); $meta = apply_filters( "add_signup_meta", $meta );
wpmu_create_blog( $domain, $path, $blog_title, $current_user->id, $meta, $wpdb->siteid ); wpmu_create_blog( $domain, $path, $blog_title, $current_user->id, $meta, $wpdb->siteid );