Make WordPress Core


Ignore:
Timestamp:
05/04/2024 07:23:31 PM (7 months ago)
Author:
johnbillion
Message:

Bootstrap/Load: Add support for custom ports in multisite site addresses.

This allows a Multisite network to use an address that includes a port name, such as example.com:1234, and adds support for this to the local development environment too. You can now run a Multisite installation on the local development environment, for example at localhost:8889.

This also fixes some bugs with running a single site installation on a port, and updates the testing infrastructure so that the whole test suite runs both with and without a port number.

Props djzone, scribu, nacin, ipstenu, F J Kaiser, jeremyfelt, johnjamesjacoby, spacedmonkey, PerS, Clorith, Blackbam, enrico.sorcinelli, Jules Colle, obliviousharmony, desrosj, johnbillion

Fixes #21077, #52088

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/ms-site.php

    r56549 r58097  
    525525    // Sanitize domain if passed.
    526526    if ( array_key_exists( 'domain', $data ) ) {
    527         $data['domain'] = trim( $data['domain'] );
    528         $data['domain'] = preg_replace( '/\s+/', '', sanitize_user( $data['domain'], true ) );
    529         if ( is_subdomain_install() ) {
    530             $data['domain'] = str_replace( '@', '', $data['domain'] );
    531         }
     527        $data['domain'] = preg_replace( '/[^a-z0-9\-.:]+/i', '', $data['domain'] );
    532528    }
    533529
Note: See TracChangeset for help on using the changeset viewer.