Skip to content
Snippets Groups Projects
Commit b04a8f60 authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms
Browse files

fix typo in oauth2 autorize controller, fixes #4333

Closes #4333

Merge request studip/studip!3134
parent 6ff5f9c2
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,7 @@ class Api_Oauth2_AuthorizeController extends OAuth2Controller
if ('nobody' === $GLOBALS['user']->id && 'Standard' !== $authPlugin && !Request::option('sso')) {
$queryParams = $psrRequest->getQueryParams();
$queryParams['sso'] = strtolower($authPlugin);
$this->redirect($this->url_for('api/oaut2/authorize', $queryParams));
$this->redirect($this->url_for('api/oauth2/authorize', $queryParams));
return;
} else {
......
......@@ -92,7 +92,7 @@
<tr v-for="(course) in courses" :key="course.id" class="studip-tree-child studip-tree-course">
<td>
<a :href="courseUrl(course.id)" tabindex="0"
:title="$gettextInterpolate($gettext('Zur Veranstaltung %{ title }'),
:title="$gettextInterpolate($gettext('fZur Veranstaltung %{ title }'),
{ title: course.attributes.title })">
<studip-icon shape="seminar" :size="26"></studip-icon>
<template v-if="course.attributes['course-number']">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment