From b0adcb6cf46ee2b51706e6469b7b36763e315136 Mon Sep 17 00:00:00 2001 From: Jan-Hendrik Willms <tleilax+studip@gmail.com> Date: Wed, 9 Nov 2022 14:21:01 +0000 Subject: [PATCH] fix bogus change, fixes #1768 Closes #1768 Merge request studip/studip!1144 --- app/views/course/wizard/steps/studyareas/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/course/wizard/steps/studyareas/index.php b/app/views/course/wizard/steps/studyareas/index.php index e8f811ed678..5246d3fc688 100644 --- a/app/views/course/wizard/steps/studyareas/index.php +++ b/app/views/course/wizard/steps/studyareas/index.php @@ -19,13 +19,13 @@ </ul> </li> </ul> - <? if (!$stepnumber && !empty($values['locked'])) : ?> + <? if (!$stepnumber && empty($values['locked'])) : ?> <div data-dialog-button class="hidden-no-js"> <?= Studip\Button::createAccept(_('Speichern'), 'save') ?> </div> <? endif ?> </div> -<? if (!empty($values['locked'])) : ?> +<? if (empty($values['locked'])) : ?> <div id="studyareas" data-ajax-url="<?= $ajax_url ?>" data-forward-url="<?= $no_js_url ?>" data-no-search-result="<?=_('Es wurde kein Suchergebnis gefunden.') ?>"> <h2><?= _('Alle Studienbereiche') ?></h2> -- GitLab