Ticket #25498: 25498.2.diff
File 25498.2.diff, 1.1 KB (added by , 8 years ago) |
---|
-
src/wp-admin/includes/schema.php
330 330 global $wpdb, $wp_db_version, $current_site, $wp_current_db_version; 331 331 332 332 $guessurl = wp_guess_url(); 333 /** 334 * Fires before creating WordPress options and setting their default values. 335 * 336 * @since 2.6.0 337 */ 338 do_action( 'populate_options' ); 333 339 334 do_action('populate_options');335 336 340 if ( ini_get('safe_mode') ) { 337 341 // Safe mode can break mkdir() so use a flat structure by default. 338 342 $uploads_use_yearmonth_folders = 0; … … 929 933 * 930 934 * @since 3.7.0 931 935 * 932 * @param array $sitemeta Associativeof meta keys and values to be inserted.933 * @param int $network_id Network ID being created.936 * @param array $sitemeta Associative array of meta keys and values to be inserted. 937 * @param int $network_id Network ID being created. 934 938 */ 935 939 $sitemeta = apply_filters( 'populate_network_meta', $sitemeta, $network_id ); 936 940