mirror of
https://github.com/nextcloud/server.git
synced 2025-02-07 09:59:46 +00:00
bbfad33a40
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
15 lines
637 B
PHP
15 lines
637 B
PHP
<?php
|
|
// SPDX-FileCopyrightText: 2018 Georg Ehrke <oc.list@georgehrke.com>
|
|
// SPDX-FileCopyrightText: 2020 Christoph Wurst <christoph@winzerhof-wurst.at>
|
|
// SPDX-FileCopyrightText: 2022 Carl Schwan <carl@carlschwan.eu>
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
?>
|
|
<div class="guest-box">
|
|
<div class="notecard error">
|
|
<p><?php p($l->t('There was an error updating your attendance status.'));?></p>
|
|
<p><?php p($l->t('Please contact the organizer directly.'));?></p>
|
|
<?php if (isset($_['organizer'])): ?>
|
|
<p><a href="<?php p($_['organizer']) ?>"><?php p(substr($_['organizer'], 7)) ?></a></p>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|