File tree 1 file changed +3
-18
lines changed
plugins/optimization-detective/storage
1 file changed +3
-18
lines changed Original file line number Diff line number Diff line change @@ -98,30 +98,15 @@ function od_register_endpoint(): void {
98
98
* @since n.e.x.t
99
99
* @access private
100
100
*
101
- * @see get_allowed_http_origins()
102
101
* @see is_allowed_http_origin()
103
102
*
104
103
* @param string $origin Origin to check.
105
104
* @return bool Whether the origin is allowed.
106
105
*/
107
106
function od_is_allowed_http_origin ( string $ origin ): bool {
108
- $ allowed_origins = get_allowed_http_origins ();
109
- $ home_url_port = wp_parse_url ( home_url (), PHP_URL_PORT );
110
-
111
- // Append the home URL's port to the allowed origins if they lack a port number.
112
- if ( is_int ( $ home_url_port ) ) {
113
- $ allowed_origins = array_map (
114
- static function ( string $ allowed_origin ) use ( $ home_url_port ): string {
115
- if ( null === wp_parse_url ( $ allowed_origin , PHP_URL_PORT ) ) {
116
- $ allowed_origin .= ': ' . (string ) $ home_url_port ;
117
- }
118
- return $ allowed_origin ;
119
- },
120
- $ allowed_origins
121
- );
122
- }
123
-
124
- return in_array ( $ origin , $ allowed_origins , true );
107
+ // Strip out the port number since core does not account for it yet as noted in get_allowed_http_origins().
108
+ $ origin = preg_replace ( '/:\d+$/ ' , '' , $ origin );
109
+ return '' !== is_allowed_http_origin ( $ origin );
125
110
}
126
111
127
112
/**
You can’t perform that action at this time.
0 commit comments