diff --git a/Services/Init/classes/class.ilStartUpGUI.php b/Services/Init/classes/class.ilStartUpGUI.php index fadaa3a8b233..dd310e30c313 100755 --- a/Services/Init/classes/class.ilStartUpGUI.php +++ b/Services/Init/classes/class.ilStartUpGUI.php @@ -1004,13 +1004,6 @@ private function showRegistrationLinks(string $page_editor_html): string $rtpl->parseCurrentBlock(); } - if ($this->dic['ilIliasIniFile']->readVariable('clients', 'list')) { - $rtpl->setCurrentBlock('client_list'); - $rtpl->setVariable('TXT_CLIENT_LIST', $this->lng->txt('to_client_list')); - $rtpl->setVariable('CMD_CLIENT_LIST', $this->ctrl->getLinkTarget($this, 'showClientList')); - $rtpl->parseCurrentBlock(); - } - return $this->substituteLoginPageElements( $tpl, $page_editor_html, @@ -1271,18 +1264,6 @@ private function showLogout(): void $tpl->parseCurrentBlock(); } - if ($this->dic['ilIliasIniFile']->readVariable('clients', 'list')) { - $tpl->setCurrentBlock('client_list'); - $tpl->setVariable('TXT_CLIENT_LIST', $this->lng->txt('to_client_list')); - $this->ctrl->setParameter($this, 'client_id', $client_id); - $tpl->setVariable( - 'CMD_CLIENT_LIST', - $this->ctrl->getLinkTarget($this, 'showClientList') - ); - $tpl->parseCurrentBlock(); - $this->ctrl->setParameter($this, 'client_id', ''); - } - $tosWithdrawalGui = new ilTermsOfServiceWithdrawalGUIHelper($this->user); $tpl->setVariable('TXT_PAGEHEADLINE', $this->lng->txt('logout'));