diff options
| author | Dhruv Goel <dhruv.goel92@gmail.com> | 2012-06-27 00:28:31 +0530 |
|---|---|---|
| committer | Dhruv <dhruv.goel92@gmail.com> | 2012-07-12 17:31:49 +0530 |
| commit | f609555b1ae335b5ea996bf26ee2846058e5256a (patch) | |
| tree | 7ab6db246b76f0153155dec08e3d291ac8fc935d /phpBB/includes/search | |
| parent | 74a7407927cd5b54328a3941a9926ee35caf17b4 (diff) | |
| download | forums-f609555b1ae335b5ea996bf26ee2846058e5256a.tar forums-f609555b1ae335b5ea996bf26ee2846058e5256a.tar.gz forums-f609555b1ae335b5ea996bf26ee2846058e5256a.tar.bz2 forums-f609555b1ae335b5ea996bf26ee2846058e5256a.tar.xz forums-f609555b1ae335b5ea996bf26ee2846058e5256a.zip | |
[feature/sphinx-fulltext-search] integrate sphinx language keys with core
Language keys removed from mods folder and added to
language/en/acp/search.php
PHPBB3-10946
Diffstat (limited to 'phpBB/includes/search')
| -rw-r--r-- | phpBB/includes/search/fulltext_sphinx.php | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/phpBB/includes/search/fulltext_sphinx.php b/phpBB/includes/search/fulltext_sphinx.php index fb16c5639b..2e263c1b55 100644 --- a/phpBB/includes/search/fulltext_sphinx.php +++ b/phpBB/includes/search/fulltext_sphinx.php @@ -733,8 +733,6 @@ class phpbb_search_fulltext_sphinx if (!isset($config['fulltext_sphinx_configured']) || !$config['fulltext_sphinx_configured']) { - $user->add_lang('mods/fulltext_sphinx'); - return $user->lang['FULLTEXT_SPHINX_CONFIGURE_FIRST']; } @@ -902,8 +900,6 @@ class phpbb_search_fulltext_sphinx $this->get_stats(); } - $user->add_lang('mods/fulltext_sphinx'); - return array( $user->lang['FULLTEXT_SPHINX_MAIN_POSTS'] => ($this->index_created()) ? $this->stats['main_posts'] : 0, $user->lang['FULLTEXT_SPHINX_DELTA_POSTS'] => ($this->index_created()) ? $this->stats['total_posts'] - $this->stats['main_posts'] : 0, @@ -966,8 +962,6 @@ class phpbb_search_fulltext_sphinx { global $user, $config; - $user->add_lang('mods/fulltext_sphinx'); - $config_vars = array( 'fulltext_sphinx_autoconf' => 'bool', 'fulltext_sphinx_autorun' => 'bool', |
