Changeset 26120
- Timestamp:
- 11/13/2013 03:22:48 AM (11 years ago)
- Location:
- trunk/src
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/admin-header.php
r26072 r26120 13 13 // In case admin-header.php is included in a function. 14 14 global $title, $hook_suffix, $current_screen, $wp_locale, $pagenow, $wp_version, 15 $current_site, $update_title, $total_update_count, $parent_file; 15 $update_title, $total_update_count, $parent_file; 16 17 $current_site = get_current_site(); 16 18 17 19 // Catch plugins that include admin-header.php before admin.php completes. -
trunk/src/wp-admin/includes/class-wp-ms-sites-list-table.php
r25125 r26120 22 22 23 23 function prepare_items() { 24 global $s, $mode, $wpdb, $current_site; 24 global $s, $mode, $wpdb; 25 26 $current_site = get_current_site(); 25 27 26 28 $mode = ( empty( $_REQUEST['mode'] ) ) ? 'list' : $_REQUEST['mode']; … … 169 171 170 172 function display_rows() { 171 global $ current_site, $mode;173 global $mode; 172 174 173 175 $status_list = array( … … 203 205 echo "<tr class='$class'>"; 204 206 205 $blogname = ( is_subdomain_install() ) ? str_replace( '.' .$current_site->domain, '', $blog['domain'] ) : $blog['path'];207 $blogname = ( is_subdomain_install() ) ? str_replace( '.' . get_current_site()->domain, '', $blog['domain'] ) : $blog['path']; 206 208 207 209 list( $columns, $hidden ) = $this->get_column_info(); … … 252 254 $actions['edit'] = '<span class="edit"><a href="' . esc_url( network_admin_url( 'site-info.php?id=' . $blog['blog_id'] ) ) . '">' . __( 'Edit' ) . '</a></span>'; 253 255 $actions['backend'] = "<span class='backend'><a href='" . esc_url( get_admin_url( $blog['blog_id'] ) ) . "' class='edit'>" . __( 'Dashboard' ) . '</a></span>'; 254 if ( $current_site->blog_id != $blog['blog_id'] ) {256 if ( get_current_site()->blog_id != $blog['blog_id'] ) { 255 257 if ( get_blog_status( $blog['blog_id'], 'deleted' ) == '1' ) 256 258 $actions['activate'] = '<span class="activate"><a href="' . esc_url( wp_nonce_url( network_admin_url( 'sites.php?action=confirm&action2=activateblog&id=' . $blog['blog_id'] . '&msg=' . urlencode( sprintf( __( 'You are about to activate the site %s' ), $blogname ) ) ), 'confirm' ) ) . '">' . __( 'Activate' ) . '</a></span>'; -
trunk/src/wp-admin/includes/class-wp-ms-users-list-table.php
r23563 r26120 134 134 135 135 function display_rows() { 136 global $ current_site, $mode;136 global $mode; 137 137 138 138 $alt = ''; … … 224 224 $path = ( $val->path == '/' ) ? '' : $val->path; 225 225 echo '<span class="site-' . $val->site_id . '" >'; 226 echo '<a href="'. esc_url( network_admin_url( 'site-info.php?id=' . $val->userblog_id ) ) .'">' . str_replace( '.' . $current_site->domain, '', $val->domain . $path ) . '</a>';226 echo '<a href="'. esc_url( network_admin_url( 'site-info.php?id=' . $val->userblog_id ) ) .'">' . str_replace( '.' . get_current_site()->domain, '', $val->domain . $path ) . '</a>'; 227 227 echo ' <small class="row-actions">'; 228 228 $actions = array(); -
trunk/src/wp-admin/includes/ms.php
r26115 r26120 53 53 */ 54 54 function wpmu_delete_blog( $blog_id, $drop = false ) { 55 global $wpdb , $current_site;55 global $wpdb; 56 56 57 57 $switch = false; … … 82 82 83 83 update_blog_status( $blog_id, 'deleted', 1 ); 84 85 $current_site = get_current_site(); 84 86 85 87 // Don't destroy the initial, main, or root blog. -
trunk/src/wp-admin/includes/schema.php
r25938 r26120 328 328 */ 329 329 function populate_options() { 330 global $wpdb, $wp_db_version, $ current_site, $wp_current_db_version;330 global $wpdb, $wp_db_version, $wp_current_db_version; 331 331 332 332 $guessurl = wp_guess_url(); … … 496 496 if ( is_multisite() ) { 497 497 /* translators: blog tagline */ 498 $options[ 'blogdescription' ] = sprintf(__('Just another %s site'), $current_site->site_name );498 $options[ 'blogdescription' ] = sprintf(__('Just another %s site'), get_current_site()->site_name ); 499 499 $options[ 'permalink_structure' ] = '/%year%/%monthnum%/%day%/%postname%/'; 500 500 } -
trunk/src/wp-admin/includes/upgrade.php
r26024 r26120 101 101 * @param int $user_id User ID. 102 102 */ 103 function wp_install_defaults( $user_id) {104 global $wpdb, $wp_rewrite, $ current_site, $table_prefix;103 function wp_install_defaults( $user_id ) { 104 global $wpdb, $wp_rewrite, $table_prefix; 105 105 106 106 // Default category … … 136 136 137 137 $first_post = str_replace( "SITE_URL", esc_url( network_home_url() ), $first_post ); 138 $first_post = str_replace( "SITE_NAME", $current_site->site_name, $first_post );138 $first_post = str_replace( "SITE_NAME", get_current_site()->site_name, $first_post ); 139 139 } else { 140 140 $first_post = __('Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!'); -
trunk/src/wp-includes/admin-bar.php
r26072 r26120 244 244 */ 245 245 function wp_admin_bar_site_menu( $wp_admin_bar ) { 246 global $current_site;247 248 246 // Don't show for logged out users. 249 247 if ( ! is_user_logged_in() ) … … 260 258 261 259 if ( is_network_admin() ) { 262 $blogname = sprintf( __('Network Admin: %s'), esc_html( $current_site->site_name ) );260 $blogname = sprintf( __('Network Admin: %s'), esc_html( get_current_site()->site_name ) ); 263 261 } elseif ( is_user_admin() ) { 264 $blogname = sprintf( __('Global Dashboard: %s'), esc_html( $current_site->site_name ) );262 $blogname = sprintf( __('Global Dashboard: %s'), esc_html( get_current_site()->site_name ) ); 265 263 } 266 264 -
trunk/src/wp-includes/class-wp-xmlrpc-server.php
r25133 r26120 460 460 */ 461 461 function wp_getUsersBlogs( $args ) { 462 global $current_site;463 462 // If this isn't on WPMU then just use blogger_getUsersBlogs 464 463 if ( !is_multisite() ) { … … 482 481 foreach ( $blogs as $blog ) { 483 482 // Don't include blogs that aren't hosted at this site 484 if ( $blog->site_id != $current_site->id )483 if ( $blog->site_id != get_current_site()->id ) 485 484 continue; 486 485 -
trunk/src/wp-includes/http.php
r25302 r26120 546 546 */ 547 547 function ms_allowed_http_request_hosts( $is_external, $host ) { 548 global $wpdb , $current_site;548 global $wpdb; 549 549 static $queried = array(); 550 550 if ( $is_external ) 551 551 return $is_external; 552 if ( $host === $current_site->domain )552 if ( $host === get_current_site()->domain ) 553 553 return true; 554 554 if ( isset( $queried[ $host ] ) ) -
trunk/src/wp-includes/link-template.php
r26081 r26120 2188 2188 */ 2189 2189 function network_site_url( $path = '', $scheme = null ) { 2190 global $current_site;2191 2192 2190 if ( ! is_multisite() ) 2193 2191 return site_url($path, $scheme); 2192 2193 $current_site = get_current_site(); 2194 2194 2195 2195 if ( 'relative' == $scheme ) … … 2219 2219 */ 2220 2220 function network_home_url( $path = '', $scheme = null ) { 2221 global $current_site;2222 2223 2221 if ( ! is_multisite() ) 2224 2222 return home_url($path, $scheme); 2225 2223 2224 $current_site = get_current_site(); 2226 2225 $orig_scheme = $scheme; 2227 2226 -
trunk/src/wp-includes/ms-blogs.php
r25615 r26120 65 65 */ 66 66 function get_id_from_blogname( $slug ) { 67 global $wpdb, $current_site; 68 67 global $wpdb; 68 69 $current_site = get_current_site(); 69 70 $slug = trim( $slug, '/' ); 70 71 -
trunk/src/wp-includes/ms-default-constants.php
r23005 r26120 46 46 */ 47 47 function ms_cookie_constants( ) { 48 global $current_site;48 $current_site = get_current_site(); 49 49 50 50 /** -
trunk/src/wp-includes/ms-functions.php
r25862 r26120 536 536 * @return array Contains the new site data and error messages. 537 537 */ 538 function wpmu_validate_blog_signup($blogname, $blog_title, $user = '') { 539 global $wpdb, $domain, $current_site; 540 538 function wpmu_validate_blog_signup( $blogname, $blog_title, $user = '' ) { 539 global $wpdb, $domain; 540 541 $current_site = get_current_site(); 541 542 $base = $current_site->path; 542 543 … … 710 711 */ 711 712 function wpmu_signup_blog_notification( $domain, $path, $title, $user, $user_email, $key, $meta = array() ) { 712 global $current_site;713 714 713 if ( !apply_filters('wpmu_signup_blog_notification', $domain, $path, $title, $user, $user_email, $key, $meta) ) 715 714 return false; 716 715 717 716 // Send email with activation link. 718 if ( !is_subdomain_install() || $current_site->id != 1 )717 if ( !is_subdomain_install() || get_current_site()->id != 1 ) 719 718 $activate_url = network_site_url("wp-activate.php?key=$key"); 720 719 else … … 1123 1122 * @param string $blog_title The title of the new site. 1124 1123 */ 1125 function install_blog( $blog_id, $blog_title = '') {1126 global $wpdb, $wp_roles , $current_site;1124 function install_blog( $blog_id, $blog_title = '' ) { 1125 global $wpdb, $wp_roles; 1127 1126 1128 1127 // Cast for security … … 1152 1151 update_option( 'upload_path', UPLOADBLOGSDIR . "/$blog_id/files" ); 1153 1152 else 1154 update_option( 'upload_path', get_blog_option( $current_site->blog_id, 'upload_path' ) );1153 update_option( 'upload_path', get_blog_option( get_current_site()->blog_id, 'upload_path' ) ); 1155 1154 1156 1155 update_option( 'blogname', wp_unslash( $blog_title ) ); … … 1206 1205 */ 1207 1206 function wpmu_welcome_notification( $blog_id, $user_id, $password, $title, $meta = array() ) { 1208 global $current_site;1207 $current_site = get_current_site(); 1209 1208 1210 1209 if ( !apply_filters('wpmu_welcome_notification', $blog_id, $user_id, $password, $title, $meta) ) … … 1270 1269 */ 1271 1270 function wpmu_welcome_user_notification( $user_id, $password, $meta = array() ) { 1272 global $current_site;1271 $current_site = get_current_site(); 1273 1272 1274 1273 if ( !apply_filters('wpmu_welcome_user_notification', $user_id, $password, $meta) ) … … 1561 1560 */ 1562 1561 function redirect_this_site( $deprecated = '' ) { 1563 global $current_site; 1564 return array( $current_site->domain ); 1562 return array( get_current_site()->domain ); 1565 1563 } 1566 1564 … … 1690 1688 */ 1691 1689 function add_new_user_to_blog( $user_id, $password, $meta ) { 1692 global $current_site;1693 1690 if ( !empty( $meta[ 'add_to_blog' ] ) ) { 1694 1691 $blog_id = $meta[ 'add_to_blog' ]; 1695 1692 $role = $meta[ 'new_role' ]; 1696 remove_user_from_blog($user_id, $current_site->blog_id); // remove user from main blog.1693 remove_user_from_blog($user_id, get_current_site()->blog_id); // remove user from main blog. 1697 1694 add_user_to_blog( $blog_id, $user_id, $role ); 1698 1695 update_user_meta( $user_id, 'primary_blog', $blog_id ); … … 1706 1703 */ 1707 1704 function fix_phpmailer_messageid( $phpmailer ) { 1708 global $current_site; 1709 $phpmailer->Hostname = $current_site->domain; 1705 $phpmailer->Hostname = get_current_site()->domain; 1710 1706 } 1711 1707 -
trunk/src/wp-includes/ms-load.php
r25991 r26120 72 72 */ 73 73 function ms_site_check() { 74 global $wpdb, $current_site;75 76 74 $blog = get_blog_details(); 77 75 … … 102 100 return WP_CONTENT_DIR . '/blog-inactive.php'; 103 101 else 104 wp_die( sprintf( __( 'This site has not been activated yet. If you are having problems activating your site, please contact <a href="mailto:%1$s">%1$s</a>.' ), str_replace( '@', ' AT ', get_site_option( 'admin_email', "support@{$current_site->domain}") ) ) );102 wp_die( sprintf( __( 'This site has not been activated yet. If you are having problems activating your site, please contact <a href="mailto:%1$s">%1$s</a>.' ), str_replace( '@', ' AT ', get_site_option( 'admin_email', 'support@' . get_current_site()->domain ) ) ) ); 105 103 } 106 104 -
trunk/src/wp-login.php
r25991 r26120 31 31 * @param WP_Error $wp_error Optional. WordPress Error Object 32 32 */ 33 function login_header( $title = 'Log In', $message = '', $wp_error = '') {34 global $error, $interim_login, $ current_site, $action;33 function login_header( $title = 'Log In', $message = '', $wp_error = '' ) { 34 global $error, $interim_login, $action; 35 35 36 36 // Don't index any of these forms … … 91 91 if ( is_multisite() ) { 92 92 $login_header_url = network_home_url(); 93 $login_header_title = $current_site->site_name;93 $login_header_title = get_current_site()->site_name; 94 94 } else { 95 95 $login_header_url = __( 'http://wordpress.org/' ); … … 263 263 */ 264 264 function retrieve_password() { 265 global $wpdb, $ current_site, $wp_hasher;265 global $wpdb, $wp_hasher; 266 266 267 267 $errors = new WP_Error(); -
trunk/src/wp-signup.php
r25868 r26120 88 88 * @param array $errors 89 89 */ 90 function show_blog_form( $blogname = '', $blog_title = '', $errors = '') {91 global $current_site;90 function show_blog_form( $blogname = '', $blog_title = '', $errors = '' ) { 91 $current_site = get_current_site(); 92 92 // Blog name 93 93 if ( !is_subdomain_install() ) … … 226 226 * @param array $errors 227 227 */ 228 function signup_another_blog($blogname = '', $blog_title = '', $errors = '') { 229 global $current_site; 228 function signup_another_blog( $blogname = '', $blog_title = '', $errors = '' ) { 230 229 $current_user = wp_get_current_user(); 231 230 … … 259 258 $errors = $filtered_results['errors']; 260 259 261 echo '<h2>' . sprintf( __( 'Get <em>another</em> %s site in seconds' ), $current_site->site_name ) . '</h2>';260 echo '<h2>' . sprintf( __( 'Get <em>another</em> %s site in seconds' ), get_current_site()->site_name ) . '</h2>'; 262 261 263 262 if ( $errors->get_error_code() ) { … … 396 395 * @param array $errors 397 396 */ 398 function signup_user( $user_name = '', $user_email = '', $errors = '') {399 global $ current_site, $active_signup;397 function signup_user( $user_name = '', $user_email = '', $errors = '' ) { 398 global $active_signup; 400 399 401 400 if ( !is_wp_error($errors) ) … … 430 429 ?> 431 430 432 <h2><?php printf( __( 'Get your own %s account in seconds' ), $current_site->site_name ) ?></h2>431 <h2><?php printf( __( 'Get your own %s account in seconds' ), get_current_site()->site_name ) ?></h2> 433 432 <form id="setupform" method="post" action="wp-signup.php"> 434 433 <input type="hidden" name="stage" value="validate-user-signup" />
Note: See TracChangeset
for help on using the changeset viewer.