Rename variable for consistency

This commit is contained in:
Sebastian Meyer 2018-11-06 13:04:37 +01:00 committed by GitHub
parent 56fb1d6172
commit 071205d08e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -261,7 +261,7 @@ class tx_dlf_solr {
$conf = unserialize($GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf'][self::$extKey]);
// Derive Solr scheme
$solrInfo['scheme'] = empty($conf['useHttps']) ? 'http' : 'https';
$solrInfo['scheme'] = empty($conf['solrHttps']) ? 'http' : 'https';
// Derive Solr host name.
$solrInfo['host'] = ($conf['solrHost'] ? $conf['solrHost'] : '127.0.0.1');