diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2023-11-16 15:21:44 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2023-11-16 15:21:44 +0000 |
| commit | 792057b4d052df210ecb5207710c9fefa253eaa8 (patch) | |
| tree | 300e78b40b6fa6ee6648c1330d72a9ce8e133d46 /app/controllers/institute/basicdata.php | |
| parent | b08ed9cd8adcf055005eb3c64f18ed74fb411d93 (diff) | |
fixes #3474
Closes #3474
Merge request studip/studip!2370
Diffstat (limited to 'app/controllers/institute/basicdata.php')
| -rw-r--r-- | app/controllers/institute/basicdata.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/institute/basicdata.php b/app/controllers/institute/basicdata.php index 2f13d9b..030749f 100644 --- a/app/controllers/institute/basicdata.php +++ b/app/controllers/institute/basicdata.php @@ -184,7 +184,7 @@ class Institute_BasicdataController extends AuthenticatedController $institute->strasse = Request::get('strasse', $institute->strasse); // Beware: Despite the name, this contains both zip code AND city name $institute->plz = Request::get('plz', $institute->plz); - $institute->url = Request::get('home', $institute->url); + $institute->url = Request::i18n('url', $institute->url)->trim(); $institute->telefon = Request::get('telefon', $institute->telefon); $institute->email = Request::get('email', $institute->email); $institute->fax = Request::get('fax', $institute->fax); |
