Changeset 42043
- Timestamp:
- 10/30/2017 07:55:09 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-network.php
r41861 r42043 220 220 * @since 4.9.0 221 221 * 222 * @param int|null $main_site_id If a positive integer is returned, it is interpreted as the main site ID.223 * @param int $network_id The ID of the networkfor which the main site was detected.222 * @param int|null $main_site_id If a positive integer is returned, it is interpreted as the main site ID. 223 * @param WP_Network $network The network object for which the main site was detected. 224 224 */ 225 $main_site_id = (int) apply_filters( 'pre_get_main_site_id', null, $this ->id);225 $main_site_id = (int) apply_filters( 'pre_get_main_site_id', null, $this ); 226 226 if ( 0 < $main_site_id ) { 227 227 return $main_site_id; -
trunk/tests/phpunit/tests/multisite/getMainSiteId.php
r41861 r42043 108 108 109 109 /** 110 * @ticket 29684 111 */ 112 public function test_get_main_site_id_filtered_depending_on_network() { 113 add_filter( 'pre_get_main_site_id', array( $this, 'filter_get_main_site_id_depending_on_network' ), 10, 2 ); 114 $result = get_main_site_id( self::$network_ids['wordpress.org/'] ); 115 116 $this->assertSame( 333, $result ); 117 } 118 119 public function filter_get_main_site_id_depending_on_network( $main_site_id, $network ) { 120 // Override main site ID for a specific network for the test. 121 if ( $network->id === (int) self::$network_ids['wordpress.org/'] ) { 122 return 333; 123 } 124 125 return $main_site_id; 126 } 127 128 /** 110 129 * @ticket 41936 111 130 */
Note: See TracChangeset
for help on using the changeset viewer.