mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-08 11:10:03 +00:00
Multisite: Pass network object instead of ID to pre_get_main_site_id.
In the original function introduced in [41380], and subsequently [41861], only the network ID was passed to the new `pre_get_main_site_id` filter. In order to make give quick access to other network properties, it was decided to pass the whole object instead. The changeset includes an additional test. Fixes #29684. git-svn-id: https://develop.svn.wordpress.org/trunk@42043 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -106,6 +106,25 @@ class Tests_Multisite_Get_Main_Site_ID extends WP_UnitTestCase {
|
||||
return 333;
|
||||
}
|
||||
|
||||
/**
|
||||
* @ticket 29684
|
||||
*/
|
||||
public function test_get_main_site_id_filtered_depending_on_network() {
|
||||
add_filter( 'pre_get_main_site_id', array( $this, 'filter_get_main_site_id_depending_on_network' ), 10, 2 );
|
||||
$result = get_main_site_id( self::$network_ids['wordpress.org/'] );
|
||||
|
||||
$this->assertSame( 333, $result );
|
||||
}
|
||||
|
||||
public function filter_get_main_site_id_depending_on_network( $main_site_id, $network ) {
|
||||
// Override main site ID for a specific network for the test.
|
||||
if ( $network->id === (int) self::$network_ids['wordpress.org/'] ) {
|
||||
return 333;
|
||||
}
|
||||
|
||||
return $main_site_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* @ticket 41936
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user