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

404.php « templates « core - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cd4f2b40bb2e0e21a5397a25f691fe4d420d28e0 (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( '', '404', 'guest' );
	$tmpl->printPage();
	exit;
}
?>
<ul>
	<li class='error'>
		<?php echo $l->t( 'Cloud not found' ); ?><br/>
		<p class='hint'><?php if(isset($_['file'])) echo htmlentities($_['file'])?></p>
	</li>
</ul>