0byt3m1n1
Path:
/
data
/
applications
/
aps
/
b2evolution
/
3.3.1-5
/
standard
/
htdocs
/
skins_adm
/
[
Home
]
File: _access_denied.main.php
<?php /** * This page displays an error message if the user is denied access to the admin section * * @package evocore */ if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' ); header('HTTP/1.0 403 Forbidden'); header_content_type( 'text/html' ); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title><?php echo T_('Access denied') ?></title> </head> <body> <div style="background-color:#fee; border: 1px solid red; text-align:center;"> <h1><?php echo T_('Access denied') ?></h1> <p><?php echo T_('Sorry, you have no permission to access this section.') ?></p> </div> <p style="text-align:center;"><?php echo '<a href="'.$htsrv_url_sensitive.'login.php?action=logout&redirect_to='.rawurlencode(url_rel_to_same_host($ReqHost.$ReqURI, $htsrv_url_sensitive)).'">'.T_('Logout').'</a> • <a href="'.$baseurl.'">'.T_('Exit to blogs').'</a>'; ?></p> </body> </html> <?php exit(0); ?>