diff --git a/typo3/sysext/core/Configuration/DefaultConfiguration.php b/typo3/sysext/core/Configuration/DefaultConfiguration.php
index 8992ae2b047d1662070eaec5b505b69c7cd5456d..db635e48a0472534d835ad9abeddc6d82fd72eb1 100644
--- a/typo3/sysext/core/Configuration/DefaultConfiguration.php
+++ b/typo3/sysext/core/Configuration/DefaultConfiguration.php
@@ -1145,7 +1145,6 @@ return array(
             )
         )
     ),
-    'MODS' => array(),
     'USER' => array(),
     'SC_OPTIONS' => array(
         // Here you can more or less freely define additional configuration for scripts in TYPO3. Of course the features supported depends on the script. See documentation "Inside TYPO3" for examples. Keys in the array are the relative path of a script (for output scripts it should be the "script ID" as found in a comment in the HTML header ) and values can then be anything that scripts wants to define for itself. The key "GLOBAL" is reserved.
diff --git a/typo3/sysext/tstemplate/Classes/Controller/TypoScriptTemplateConstantEditorModuleFunctionController.php b/typo3/sysext/tstemplate/Classes/Controller/TypoScriptTemplateConstantEditorModuleFunctionController.php
index f8700ae8e27e056ffbdd5b67c4f23fa243cc9bb9..0960c321813af6589bbee13902d9c9eb77b95326 100644
--- a/typo3/sysext/tstemplate/Classes/Controller/TypoScriptTemplateConstantEditorModuleFunctionController.php
+++ b/typo3/sysext/tstemplate/Classes/Controller/TypoScriptTemplateConstantEditorModuleFunctionController.php
@@ -26,12 +26,6 @@ use TYPO3\CMS\Frontend\Page\PageRepository;
 
 /**
  * TypoScript Constant editor
- *
- * Module Include-file
- *
- * $GLOBALS['TYPO3_CONF_VARS']['MODS']['web_ts']['onlineResourceDir'] = 'fileadmin/fonts/';
- * // This is the path (must be in "fileadmin/" !!) where the web_ts/constant-editor submodule fetches online resources.
- * Put fonts (ttf) and standard images here!
  */
 class TypoScriptTemplateConstantEditorModuleFunctionController extends AbstractFunctionModule
 {
diff --git a/typo3/sysext/tstemplate/Classes/Controller/TypoScriptTemplateModuleController.php b/typo3/sysext/tstemplate/Classes/Controller/TypoScriptTemplateModuleController.php
index 30843bc134c84366a0447fe74133f3650192cefa..add2244711c674cb78e1686f15708e47d6d81a86 100755
--- a/typo3/sysext/tstemplate/Classes/Controller/TypoScriptTemplateModuleController.php
+++ b/typo3/sysext/tstemplate/Classes/Controller/TypoScriptTemplateModuleController.php
@@ -32,8 +32,6 @@ use TYPO3\CMS\Fluid\ViewHelpers\Be\InfoboxViewHelper;
 
 /**
  * Module: TypoScript Tools
- *
- * $TYPO3_CONF_VARS["MODS"]["web_ts"]["onlineResourceDir"]  = Directory of default resources. Eg. "fileadmin/res/" or so.
  */
 class TypoScriptTemplateModuleController extends BaseScriptClass
 {