| Revision 16029,
513 bytes
checked in by Alexander Trofimov, 3 months ago
(diff) |
|
Pages - improvements and fixes
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | /** |
|---|
| 3 | * @package Dolphin Core |
|---|
| 4 | * @copyright Copyright (c) BoonEx Pty Limited - http://www.boonex.com/ |
|---|
| 5 | * @license CC-BY - http://creativecommons.org/licenses/by/3.0/ |
|---|
| 6 | */ |
|---|
| 7 | defined('BX_DOL') or die('hack attempt'); |
|---|
| 8 | |
|---|
| 9 | if (defined('BX_PROFILER') && BX_PROFILER) require_once(BX_DIRECTORY_PATH_MODULES . 'boonex/profiler/classes/BxProfiler.php'); |
|---|
| 10 | |
|---|
| 11 | // if IP is banned - total block |
|---|
| 12 | if ((int)getParam('ipBlacklistMode') == 1 && bx_is_ip_blocked()) { |
|---|
| 13 | echo _t('_Sorry, your IP been banned'); |
|---|
| 14 | exit; |
|---|
| 15 | } |
|---|
| 16 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.