Changeset 15473
- Timestamp:
- 07/27/2010 06:02:45 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-activate.php
r14161 r15473 66 66 echo '<p class="lead-in">'; 67 67 if ( $signup->domain . $signup->path == '' ) { 68 printf( __('Your account has been activated. You may now <a href="%1$s">log in</a> to the site using your chosen username of “%2$s”. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%4$s">reset your password</a>.'), network_site_url( 'wp-login.php', 'login' ), $signup->user_login, $signup->user_email, network_site_url( 'wp-login.php?action=lostpassword', 'login' ) );68 printf( __('Your account has been activated. You may now <a href="%1$s">log in</a> to the site using your chosen username of “%2$s”. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%4$s">reset your password</a>.'), network_site_url( 'wp-login.php', 'login' ), $signup->user_login, $signup->user_email, network_site_url( 'wp-login.php?action=lostpassword', 'login' ) ); 69 69 } else { 70 70 printf( __('Your site at <a href="%1$s">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%5$s">reset your password</a>.'), 'http://' . $signup->domain, $signup->domain, $signup->user_login, $signup->user_email, network_site_url( 'wp-login.php?action=lostpassword' ) ); -
trunk/wp-admin/includes/upgrade.php
r15457 r15473 267 267 $wpdb->insert( $wpdb->postmeta, array( 'post_id' => 2, 'meta_key' => '_wp_page_template', 'meta_value' => 'default' ) ); 268 268 269 // Set up default widgets for default theme.269 // Set up default widgets for default theme. 270 270 update_option( 'widget_search', array ( 2 => array ( 'title' => '' ), '_multiwidget' => 1 ) ); 271 271 update_option( 'widget_recent-posts', array ( 2 => array ( 'title' => '', 'number' => 5 ), '_multiwidget' => 1 ) ); -
trunk/wp-admin/nav-menus.php
r15430 r15473 71 71 $menu_item_data = (array) wp_setup_nav_menu_item( get_post( $menu_item_id ) ); 72 72 73 // set up the data we need in one pass through the array of menu items73 // set up the data we need in one pass through the array of menu items 74 74 $dbids_to_orders = array(); 75 75 $orders_to_dbids = array(); … … 145 145 $menu_item_data = (array) wp_setup_nav_menu_item( get_post( $menu_item_id ) ); 146 146 147 // set up the data we need in one pass through the array of menu items147 // set up the data we need in one pass through the array of menu items 148 148 $dbids_to_orders = array(); 149 149 $orders_to_dbids = array(); -
trunk/wp-admin/update-core.php
r15281 r15473 132 132 } else { 133 133 echo '<div class="updated"><p>'; 134 _e('<strong>Important:</strong> before updating, please <a href="http://codex.wordpress.org/WordPress_Backups">back up your database and files</a>. For help with updates, visit the <a href="http://codex.wordpress.org/Updating_WordPress">Updating WordPress</a> Codex page.');134 _e('<strong>Important:</strong> before updating, please <a href="http://codex.wordpress.org/WordPress_Backups">back up your database and files</a>. For help with updates, visit the <a href="http://codex.wordpress.org/Updating_WordPress">Updating WordPress</a> Codex page.'); 135 135 echo '</p></div>'; 136 136 -
trunk/wp-includes/media.php
r15003 r15473 1064 1064 global $shortcode_tags; 1065 1065 1066 // Back up current registered shortcodes and clear them all out1066 // Back up current registered shortcodes and clear them all out 1067 1067 $orig_shortcode_tags = $shortcode_tags; 1068 1068 remove_all_shortcodes(); -
trunk/wp-includes/ms-functions.php
r15404 r15473 285 285 return __( 'Error: Site URL already taken.' ); 286 286 287 // Need to back up wpdb table names, and create a new wp_blogs entry for new blog.287 // Need to back up wpdb table names, and create a new wp_blogs entry for new blog. 288 288 // Need to get blog_id from wp_blogs, and create new table names. 289 289 // Must restore table names at the end of function.
Note: See TracChangeset
for help on using the changeset viewer.