Another unneeded callstack call is removed

pull/13562/head
Michael 2023-10-18 20:21:02 +00:00
parent f56054ecc1
commit 004e87c986
1 changed files with 1 additions and 1 deletions

View File

@ -524,7 +524,7 @@ class System
public static function externalRedirect($url, $code = 302)
{
if (empty(parse_url($url, PHP_URL_SCHEME))) {
Logger::warning('No fully qualified URL provided', ['url' => $url, 'callstack' => self::callstack(20)]);
Logger::warning('No fully qualified URL provided', ['url' => $url]);
DI::baseUrl()->redirect($url);
}