aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/constants.php
diff options
context:
space:
mode:
authorMáté Bartus <mate.bartus@gmail.com>2015-12-09 19:14:48 +0100
committerMáté Bartus <mate.bartus@gmail.com>2015-12-09 19:14:48 +0100
commit18377d63ee2f788ea9ea1ebe9274f93ac03306f9 (patch)
treefaaab9f3ee52f02faee9bc481236214b2329ad40 /phpBB/includes/constants.php
parent7c05b881c5534520e978785ca6d27cad826fbc67 (diff)
parent2d3e340f1910d93a6d7aa672f26f8dbeb4f74a6d (diff)
downloadforums-18377d63ee2f788ea9ea1ebe9274f93ac03306f9.tar
forums-18377d63ee2f788ea9ea1ebe9274f93ac03306f9.tar.gz
forums-18377d63ee2f788ea9ea1ebe9274f93ac03306f9.tar.bz2
forums-18377d63ee2f788ea9ea1ebe9274f93ac03306f9.tar.xz
forums-18377d63ee2f788ea9ea1ebe9274f93ac03306f9.zip
Merge pull request #4074 from marc1706/ticket/14349
[ticket/14349] Improve error messages and remove output of suppressed messages
Diffstat (limited to 'phpBB/includes/constants.php')
-rw-r--r--phpBB/includes/constants.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php
index 680d5a2b4e..6a0b7d4ccd 100644
--- a/phpBB/includes/constants.php
+++ b/phpBB/includes/constants.php
@@ -28,7 +28,7 @@ if (!defined('IN_PHPBB'))
*/
// phpBB Version
-define('PHPBB_VERSION', '3.2.0-a2-dev');
+@define('PHPBB_VERSION', '3.2.0-a2-dev');
// QA-related
// define('PHPBB_QA', 1);
@@ -235,7 +235,7 @@ define('BANLIST_TABLE', $table_prefix . 'banlist');
define('BBCODES_TABLE', $table_prefix . 'bbcodes');
define('BOOKMARKS_TABLE', $table_prefix . 'bookmarks');
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('CONFIRM_TABLE', $table_prefix . 'confirm');
define('DISALLOW_TABLE', $table_prefix . 'disallow');