From b16c206deb4c764f8007d53aad51658a5b188a10 Mon Sep 17 00:00:00 2001 From: Elmar Ludwig <elmar.ludwig@uni-osnabrueck.de> Date: Fri, 25 Aug 2023 07:07:10 +0000 Subject: [PATCH] use correct action, fixes #3093 Closes #3093 Merge request studip/studip!2082 --- app/views/my_institutes/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/my_institutes/index.php b/app/views/my_institutes/index.php index cff61cea5d2..8190a6fe1a9 100644 --- a/app/views/my_institutes/index.php +++ b/app/views/my_institutes/index.php @@ -4,8 +4,8 @@ _('Wollen Sie sich aus dem/der %s wirklich austragen?'), htmlReady($flash['name']) ), - $controller->declineURL($flash['inst_id'], ['cmd' => 'kill', 'studipticket' => $flash['studipticket']]), - $controller->declineURL($flash['inst_id'], ['cmd'=> 'back', 'studipticket' => $flash['studipticket']]) + $controller->decline_instURL($flash['inst_id'], ['cmd' => 'kill', 'studipticket' => $flash['studipticket']]), + $controller->decline_instURL($flash['inst_id'], ['cmd'=> 'back', 'studipticket' => $flash['studipticket']]) ) ?> <? endif ?> -- GitLab