mirror of
https://github.com/nextcloud/server.git
synced 2024-12-28 07:58:42 +00:00
e07a190641
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
18 lines
498 B
PHP
18 lines
498 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
/** @var array $_ */
|
|
/** @var \OCP\IL10N $l */
|
|
/** @var \OCP\Defaults $theme */
|
|
?>
|
|
|
|
<div class="update">
|
|
<h2><?php p($_['title']) ?></h2>
|
|
<p><?php p($_['message']) ?></p>
|
|
<p><a class="button primary" href="<?php p(\OC::$server->get(\OCP\IURLGenerator::class)->linkTo('', 'index.php')) ?>">
|
|
<?php p($l->t('Go to %s', [$theme->getName()])); ?>
|
|
</a></p>
|
|
</div>
|