Making redirect message more informative

2022.09-rc
Philipp Holzer 2018-10-23 12:17:41 +02:00
rodzic 9e322d2565
commit 3e6ea9383b
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 517BE60E2CE5C8A5
3 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -2000,7 +2000,7 @@ class App
public function internalRedirect($toUrl = '', $ssl = false)
{
if (filter_var($toUrl, FILTER_VALIDATE_URL)) {
throw new InternalServerErrorException('URL is not a relative path, please use System::externalRedirectTo');
throw new InternalServerErrorException("'$toUrl is not a relative path, please use System::externalRedirectTo");
}
$redirectTo = $this->getBaseURL($ssl) . '/' . ltrim($toUrl, '/');

Wyświetl plik

@ -247,7 +247,7 @@ class System extends BaseObject
public static function externalRedirect($url)
{
if (!filter_var($url, FILTER_VALIDATE_URL)) {
throw new InternalServerErrorException('URL is not a fully qualified URL, please use App->internalRedirect() instead');
throw new InternalServerErrorException("'$url' is not a fully qualified URL, please use App->internalRedirect() instead");
}
header("Location: $url");

Wyświetl plik

@ -34,4 +34,4 @@ class SystemTest extends TestCase
$guid = System::createGUID(23, 'test');
$this->assertGuid($guid, 23, 'test');
}
}
}