[feature/sphinx-fulltext-search] add sphinx_table constant to constants.php

PHPBB3-10946
This commit is contained in:
Dhruv Goel 2012-07-01 03:03:15 +05:30 committed by Dhruv
parent 97fda78e7d
commit 4a11a7b970
2 changed files with 1 additions and 1 deletions

View file

@ -260,6 +260,7 @@ define('SESSIONS_TABLE', $table_prefix . 'sessions');
define('SESSIONS_KEYS_TABLE', $table_prefix . 'sessions_keys'); define('SESSIONS_KEYS_TABLE', $table_prefix . 'sessions_keys');
define('SITELIST_TABLE', $table_prefix . 'sitelist'); define('SITELIST_TABLE', $table_prefix . 'sitelist');
define('SMILIES_TABLE', $table_prefix . 'smilies'); define('SMILIES_TABLE', $table_prefix . 'smilies');
define('SPHINX_TABLE', $table_prefix . 'sphinx');
define('STYLES_TABLE', $table_prefix . 'styles'); define('STYLES_TABLE', $table_prefix . 'styles');
define('STYLES_TEMPLATE_TABLE', $table_prefix . 'styles_template'); define('STYLES_TEMPLATE_TABLE', $table_prefix . 'styles_template');
define('STYLES_TEMPLATE_DATA_TABLE',$table_prefix . 'styles_template_data'); define('STYLES_TEMPLATE_DATA_TABLE',$table_prefix . 'styles_template_data');

View file

@ -26,7 +26,6 @@ require($phpbb_root_path . "includes/sphinxapi-0.9.8." . $phpEx);
define('INDEXER_NAME', 'indexer'); define('INDEXER_NAME', 'indexer');
define('SEARCHD_NAME', 'searchd'); define('SEARCHD_NAME', 'searchd');
define('SPHINX_TABLE', $table_prefix . 'sphinx');
define('MAX_MATCHES', 20000); define('MAX_MATCHES', 20000);
define('CONNECT_RETRIES', 3); define('CONNECT_RETRIES', 3);