diff --git a/src/Core/System.php b/src/Core/System.php index eadbf98d26..3bd06bc191 100644 --- a/src/Core/System.php +++ b/src/Core/System.php @@ -272,7 +272,7 @@ class System extends BaseObject */ public static function externalRedirect($url) { - if (!filter_var($url, FILTER_VALIDATE_URL)) { + if (empty(parse_url($url, PHP_URL_SCHEME))) { throw new InternalServerErrorException("'$url' is not a fully qualified URL, please use App->internalRedirect() instead"); }