Skip to content
Snippets Groups Projects
Commit 153917be authored by René Fritz's avatar René Fritz
Browse files

fixed bug in getServiceOption()

git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@708 709f56b5-9817-0410-a4d7-c38de5d9e867
parent b1ecef06
Branches
Tags
No related merge requests found
......@@ -231,7 +231,7 @@ class t3lib_svbase {
$svOptions = $TYPO3_CONF_VARS['SVCONF'][$this->info['serviceType']];
if(isset($svOptions[$this->info['serviceKey']][$optionName])) {
$config = $svOptions['default'][$optionName];
$config = $svOptions[$this->info['serviceKey']][$optionName];
} elseif($includeDefaultConfig AND isset($svOptions['default'][$optionName])) {
$config = $svOptions['default'][$optionName];
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment