Skip to content

Commit

Permalink
Fixed issue #14203: Assessments mode vs Assessment mode
Browse files Browse the repository at this point in the history
  • Loading branch information
thedirtypanda committed Feb 24, 2021
1 parent 10ff6ea commit 04755d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/views/assessment/assessments_view.php
Expand Up @@ -15,15 +15,15 @@
<div class="container-fluid">
<?php
$messageLink = gT("Assessment mode for this survey is not activated.").'<br/>'
. gt("If you want to activate it click here:").'<br/>'
. gt("If you want to activate it, click here:").'<br/>'
. '<a type="submit" class="btn btn-primary" href="'
. $this->createUrl('/assessment/activate', ['surveyid'=> $surveyid])
.'">'.gT('Activate assessements').'</a>';
if(!Assessment::isAssessmentActive($surveyid)) {
?>
<div class="row text-center">
<div class="jumbotron message-box warningheader col-sm-12 col-md-6 col-md-offset-3">
<h2><?= gT("Assessments mode not activated"); ?></h2>
<h2><?= gT("Assessment mode not activated"); ?></h2>
<?php echo $messageLink; ?>
</div>
</div>
Expand Down

0 comments on commit 04755d0

Please sign in to comment.