Issue 14303: Fixes %3f problem with OAuth login

This commit is contained in:
Michael 2024-08-03 19:21:29 +00:00
parent 26f8392754
commit efee399397
3 changed files with 9 additions and 5 deletions

View file

@ -45,7 +45,7 @@ class Acknowledge extends BaseApi
protected function content(array $request = []): string
{
DI::session()->set('return_path', $_REQUEST['return_path'] ?? '');
DI::session()->set('return_path', 'oauth/authorize?' . $request['return_authorize']);
$o = Renderer::replaceMacros(Renderer::getMarkupTemplate('oauth_authorize.tpl'), [
'$title' => DI::l10n()->t('Authorize application connection'),