Skip to content

Commit

Permalink
Fix wrong on screen message color
Browse files Browse the repository at this point in the history
  • Loading branch information
fwolf-ilias committed Apr 15, 2024
1 parent 3dcfeee commit 1d6fc6d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ public function listTree(): void
$this->tpl->setOnScreenMessage('failure', $this->getLang()->txt('sysc_tree_list_failures') . ' ' . $errors_count, true);
} else {
$this->getTask()->setStatus(ilSCTask::STATUS_COMPLETED);
$this->tpl->setOnScreenMessage('failure', $this->getLang()->txt('sysc_message_success'), true);
$this->tpl->setOnScreenMessage('success', $this->getLang()->txt('sysc_message_success'), true);
}

$this->getTask()->setLastUpdate(new ilDateTime(time(), IL_CAL_UNIX));
Expand Down

0 comments on commit 1d6fc6d

Please sign in to comment.