HomeHelpTrac

source: trunk/inc/params.inc.php @ 16029

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 */
7defined('BX_DOL') or die('hack attempt');
8
9if (defined('BX_PROFILER') && BX_PROFILER) require_once(BX_DIRECTORY_PATH_MODULES . 'boonex/profiler/classes/BxProfiler.php');
10
11// if IP is banned - total block
12if ((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.