[ticket/454] Check for IN_PHPBB in functions files

B3P-454
This commit is contained in:
Marc Alexander
2015-02-01 01:40:22 +01:00
parent d4bd1db22e
commit cbe947fba4
3 changed files with 24 additions and 0 deletions

View File

@@ -7,6 +7,14 @@
*
*/
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
// Config constants
define('B3_MODULE_DISABLED', 0);
define('B3_MODULE_ENABLED', 1);

View File

@@ -7,6 +7,14 @@
*
*/
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
// Get portal config
function obtain_portal_config()
{

View File

@@ -7,6 +7,14 @@
*
*/
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/**
* Convert column number to string equivalent
*