File: includes/constants.php
Unmodified
Added
Modified
Removed
Line 28 | Line 28 |
---|
*/
// phpBB Version
|
*/
// phpBB Version
|
@define('PHPBB_VERSION', '3.3.3');
| @define('PHPBB_VERSION', '3.3.13');
|
// QA-related // define('PHPBB_QA', 1);
| // QA-related // define('PHPBB_QA', 1);
|
Line 247 | Line 247 |
---|
define('BBCODES_TABLE', $table_prefix . 'bbcodes'); define('BOOKMARKS_TABLE', $table_prefix . 'bookmarks'); define('BOTS_TABLE', $table_prefix . 'bots');
|
define('BBCODES_TABLE', $table_prefix . 'bbcodes'); define('BOOKMARKS_TABLE', $table_prefix . 'bookmarks'); define('BOTS_TABLE', $table_prefix . 'bots');
|
@define('CONFIG_TABLE', $table_prefix . 'config');
| if (!defined('CONFIG_TABLE')) { define('CONFIG_TABLE', $table_prefix . 'config'); }
|
define('CONFIG_TEXT_TABLE', $table_prefix . 'config_text'); define('CONFIRM_TABLE', $table_prefix . 'confirm'); define('DISALLOW_TABLE', $table_prefix . 'disallow');
| define('CONFIG_TEXT_TABLE', $table_prefix . 'config_text'); define('CONFIRM_TABLE', $table_prefix . 'confirm'); define('DISALLOW_TABLE', $table_prefix . 'disallow');
|