Welcome to mirror list, hosted at ThFree Co, Russian Federation.

error.php « templates « core - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 929e8dd398466f854dc21ffe3bf2803a7b9ac462 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<div class="error">
	<h2><?php p($l->t('Error')) ?></h2>
	<ul>
	<?php foreach($_["errors"] as $error):?>
		<li>
			<p><?php p($error['error']) ?></p>
			<?php if(isset($error['hint']) && $error['hint']): ?>
				<p class='hint'><?php p($error['hint']) ?></p>
			<?php endif;?>
		</li>
	<?php endforeach ?>
	</ul>
</div>