mirror of
https://github.com/friendica/friendica
synced 2024-11-10 13:42:53 +00:00
Fix for exceptions on external redirects
This commit is contained in:
parent
bfe809f60d
commit
fb68b50139
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue