diff options
author | Andreas Fischer <bantu@phpbb.com> | 2012-12-15 23:54:49 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2012-12-15 23:54:49 +0100 |
commit | 066649946802896a3a18cc1868fe0e1795db3efb (patch) | |
tree | 267733ca80f0a994f4c46af63e9e185fa4a3058b /phpBB/includes/search | |
parent | 762cb074c330480340a6c14abb37e82a1ff8b09d (diff) | |
download | forums-066649946802896a3a18cc1868fe0e1795db3efb.tar forums-066649946802896a3a18cc1868fe0e1795db3efb.tar.gz forums-066649946802896a3a18cc1868fe0e1795db3efb.tar.bz2 forums-066649946802896a3a18cc1868fe0e1795db3efb.tar.xz forums-066649946802896a3a18cc1868fe0e1795db3efb.zip |
[ticket/11273] Add space before MiB to Sphinx "Indexer memory limit" input box.
PHPBB3-11273
Diffstat (limited to 'phpBB/includes/search')
-rw-r--r-- | phpBB/includes/search/fulltext_sphinx.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/search/fulltext_sphinx.php b/phpBB/includes/search/fulltext_sphinx.php index a84a64825c..4bacf74f93 100644 --- a/phpBB/includes/search/fulltext_sphinx.php +++ b/phpBB/includes/search/fulltext_sphinx.php @@ -875,7 +875,7 @@ class phpbb_search_fulltext_sphinx </dl> <dl> <dt><label for="fulltext_sphinx_indexer_mem_limit">' . $this->user->lang['FULLTEXT_SPHINX_INDEXER_MEM_LIMIT'] . $this->user->lang['COLON'] . '</label><br /><span>' . $this->user->lang['FULLTEXT_SPHINX_INDEXER_MEM_LIMIT_EXPLAIN'] . '</span></dt> - <dd><input id="fulltext_sphinx_indexer_mem_limit" type="text" size="4" maxlength="10" name="config[fulltext_sphinx_indexer_mem_limit]" value="' . $this->config['fulltext_sphinx_indexer_mem_limit'] . '" />' . $this->user->lang['MIB'] . '</dd> + <dd><input id="fulltext_sphinx_indexer_mem_limit" type="text" size="4" maxlength="10" name="config[fulltext_sphinx_indexer_mem_limit]" value="' . $this->config['fulltext_sphinx_indexer_mem_limit'] . '" /> ' . $this->user->lang['MIB'] . '</dd> </dl> <dl> <dt><label for="fulltext_sphinx_config_file">' . $this->user->lang['FULLTEXT_SPHINX_CONFIG_FILE'] . $this->user->lang['COLON'] . '</label><br /><span>' . $this->user->lang['FULLTEXT_SPHINX_CONFIG_FILE_EXPLAIN'] . '</dt> |