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

403.php « templates « core - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cdfef08ac769234c11a0aefdb061b71a03cca989 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
if(!isset($_)){//also provide standalone error page
	require_once '../../lib/base.php';
	
	$tmpl = new OC_Template( '', '403', 'guest' );
	$tmpl->printPage();
	exit;
}
?>
<ul>
	<li class='error'>
		<?php echo $l->t( 'Access forbidden' ); ?><br/>
		<p class='hint'><?php if(isset($_['file'])) echo $_['file']?></p>
	</li>
</ul>