Changeset 41289 for trunk/src/wp-admin/includes/upgrade.php
- Timestamp:
- 08/22/2017 11:51:11 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/upgrade.php
r40864 r41289 9 9 */ 10 10 11 /** Include user install customizescript. */11 /** Include user installation customization script. */ 12 12 if ( file_exists(WP_CONTENT_DIR . '/install.php') ) 13 13 require (WP_CONTENT_DIR . '/install.php'); … … 96 96 flush_rewrite_rules(); 97 97 98 wp_new_blog_notification($blog_title, $guessurl, $user_id, ($email_password ? $user_password : __('The password you chose during the install.') ) );98 wp_new_blog_notification($blog_title, $guessurl, $user_id, ($email_password ? $user_password : __('The password you chose during installation.') ) ); 99 99 100 100 wp_cache_flush(); … … 286 286 287 287 /** 288 * Maybe enable pretty permalinks on install .288 * Maybe enable pretty permalinks on installation. 289 289 * 290 290 * If after enabling pretty permalinks don't work, fallback to query-string permalinks. … … 453 453 454 454 /** 455 * Functions to be called in install and upgrade scripts.455 * Functions to be called in installation and upgrade scripts. 456 456 * 457 457 * Contains conditional checks to determine which upgrade scripts to run, … … 2061 2061 2062 2062 /** 2063 * Utility version of get_option that is private to install /upgrade.2063 * Utility version of get_option that is private to installation/upgrade. 2064 2064 * 2065 2065 * @ignore
Note: See TracChangeset
for help on using the changeset viewer.