diff options
Diffstat (limited to 'phpBB/includes/constants.php')
| -rw-r--r-- | phpBB/includes/constants.php | 9 | 
1 files changed, 4 insertions, 5 deletions
| diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php index 17c25ee3c6..68af41ab20 100644 --- a/phpBB/includes/constants.php +++ b/phpBB/includes/constants.php @@ -2,9 +2,8 @@  /**  *  * @package phpBB3 -* @version $Id$  * @copyright (c) 2005 phpBB Group -* @license http://opensource.org/licenses/gpl-license.php GNU Public License +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2  *  */ @@ -25,7 +24,7 @@ if (!defined('IN_PHPBB'))  */  // phpBB Version -define('PHPBB_VERSION', '3.0.12-dev'); +define('PHPBB_VERSION', '3.1.0-dev');  // QA-related  // define('PHPBB_QA', 1); @@ -226,6 +225,7 @@ define('CONFIG_TABLE',				$table_prefix . 'config');  define('CONFIRM_TABLE',				$table_prefix . 'confirm');  define('DISALLOW_TABLE',			$table_prefix . 'disallow');  define('DRAFTS_TABLE',				$table_prefix . 'drafts'); +define('EXT_TABLE',					$table_prefix . 'ext');  define('EXTENSIONS_TABLE',			$table_prefix . 'extensions');  define('EXTENSION_GROUPS_TABLE',	$table_prefix . 'extension_groups');  define('FORUMS_TABLE',				$table_prefix . 'forums'); @@ -260,6 +260,7 @@ define('SESSIONS_TABLE',			$table_prefix . 'sessions');  define('SESSIONS_KEYS_TABLE',		$table_prefix . 'sessions_keys');  define('SITELIST_TABLE',			$table_prefix . 'sitelist');  define('SMILIES_TABLE',				$table_prefix . 'smilies'); +define('SPHINX_TABLE',				$table_prefix . 'sphinx');  define('STYLES_TABLE',				$table_prefix . 'styles');  define('STYLES_TEMPLATE_TABLE',		$table_prefix . 'styles_template');  define('STYLES_TEMPLATE_DATA_TABLE',$table_prefix . 'styles_template_data'); @@ -278,5 +279,3 @@ define('ZEBRA_TABLE',				$table_prefix . 'zebra');  // Additional tables - -?> | 
