summaryrefslogtreecommitdiff
path: root/www/crm/wp-includes/pluggable.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/crm/wp-includes/pluggable.php')
-rw-r--r--www/crm/wp-includes/pluggable.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/www/crm/wp-includes/pluggable.php b/www/crm/wp-includes/pluggable.php
index 777dfbef..2f302539 100644
--- a/www/crm/wp-includes/pluggable.php
+++ b/www/crm/wp-includes/pluggable.php
@@ -1396,6 +1396,14 @@ if ( ! function_exists( 'wp_validate_redirect' ) ) :
return $default;
}
+ if ( ! isset( $lp['host'] ) && ! empty( $lp['path'] ) && '/' !== $lp['path'][0] ) {
+ $path = '';
+ if ( ! empty( $_SERVER['REQUEST_URI'] ) ) {
+ $path = dirname( parse_url( 'http://placeholder' . $_SERVER['REQUEST_URI'], PHP_URL_PATH ) . '?' );
+ }
+ $location = '/' . ltrim( $path . '/', '/' ) . $location;
+ }
+
// Reject if certain components are set but host is not. This catches urls like https:host.com for which parse_url does not set the host field.
if ( ! isset( $lp['host'] ) && ( isset( $lp['scheme'] ) || isset( $lp['user'] ) || isset( $lp['pass'] ) || isset( $lp['port'] ) ) ) {
return $default;