2012-03-25 16:16:39 +04:00
|
|
|
<?php
|
2016-04-12 13:49:11 +03:00
|
|
|
// @codeCoverageIgnoreStart
|
2012-09-07 17:22:01 +04:00
|
|
|
if(!isset($_)) {//also provide standalone error page
|
2012-03-25 16:16:39 +04:00
|
|
|
require_once '../../lib/base.php';
|
|
|
|
|
|
|
|
$tmpl = new OC_Template( '', '403', 'guest' );
|
|
|
|
$tmpl->printPage();
|
|
|
|
exit;
|
|
|
|
}
|
2016-04-12 13:49:11 +03:00
|
|
|
// @codeCoverageIgnoreEnd
|
2012-03-25 16:16:39 +04:00
|
|
|
?>
|
|
|
|
<ul>
|
|
|
|
<li class='error'>
|
2015-03-18 01:57:23 +03:00
|
|
|
<?php p($l->t( 'Access forbidden' )); ?><br>
|
2013-02-28 01:55:39 +04:00
|
|
|
<p class='hint'><?php if(isset($_['file'])) p($_['file'])?></p>
|
2012-03-25 16:16:39 +04:00
|
|
|
</li>
|
|
|
|
</ul>
|