mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-02 14:57:37 +02:00
[ticket/14349] Suppress output due to duplicate definition in installer
PHPBB3-14349
This commit is contained in:
@@ -28,7 +28,7 @@ if (!defined('IN_PHPBB'))
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// phpBB Version
|
// phpBB Version
|
||||||
define('PHPBB_VERSION', '3.2.0-a2-dev');
|
@define('PHPBB_VERSION', '3.2.0-a2-dev');
|
||||||
|
|
||||||
// QA-related
|
// QA-related
|
||||||
// define('PHPBB_QA', 1);
|
// define('PHPBB_QA', 1);
|
||||||
@@ -235,7 +235,7 @@ define('BANLIST_TABLE', $table_prefix . 'banlist');
|
|||||||
define('BBCODES_TABLE', $table_prefix . 'bbcodes');
|
define('BBCODES_TABLE', $table_prefix . 'bbcodes');
|
||||||
define('BOOKMARKS_TABLE', $table_prefix . 'bookmarks');
|
define('BOOKMARKS_TABLE', $table_prefix . 'bookmarks');
|
||||||
define('BOTS_TABLE', $table_prefix . 'bots');
|
define('BOTS_TABLE', $table_prefix . 'bots');
|
||||||
define('CONFIG_TABLE', $table_prefix . 'config');
|
@define('CONFIG_TABLE', $table_prefix . 'config');
|
||||||
define('CONFIG_TEXT_TABLE', $table_prefix . 'config_text');
|
define('CONFIG_TEXT_TABLE', $table_prefix . 'config_text');
|
||||||
define('CONFIRM_TABLE', $table_prefix . 'confirm');
|
define('CONFIRM_TABLE', $table_prefix . 'confirm');
|
||||||
define('DISALLOW_TABLE', $table_prefix . 'disallow');
|
define('DISALLOW_TABLE', $table_prefix . 'disallow');
|
||||||
|
@@ -23,6 +23,7 @@ if (php_sapi_name() !== 'cli')
|
|||||||
define('IN_PHPBB', true);
|
define('IN_PHPBB', true);
|
||||||
define('IN_INSTALL', true);
|
define('IN_INSTALL', true);
|
||||||
define('PHPBB_ENVIRONMENT', 'production');
|
define('PHPBB_ENVIRONMENT', 'production');
|
||||||
|
define('PHPBB_VERSION', '3.2.0-a2-dev');
|
||||||
$phpbb_root_path = __DIR__ . '/../';
|
$phpbb_root_path = __DIR__ . '/../';
|
||||||
$phpEx = substr(strrchr(__FILE__, '.'), 1);
|
$phpEx = substr(strrchr(__FILE__, '.'), 1);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user