diff --git a/typo3/sysext/fluid/Classes/ViewHelpers/Widget/AutocompleteViewHelper.php b/typo3/sysext/fluid/Classes/ViewHelpers/Widget/AutocompleteViewHelper.php
index 364cbb048c3bc8fbba13fcf3e7fe428ce11b7737..c5dd171d097b4f0546d846f7e721e99bca9bbc0b 100644
--- a/typo3/sysext/fluid/Classes/ViewHelpers/Widget/AutocompleteViewHelper.php
+++ b/typo3/sysext/fluid/Classes/ViewHelpers/Widget/AutocompleteViewHelper.php
@@ -34,13 +34,15 @@ use TYPO3\CMS\Extbase\Persistence\QueryResultInterface;
  * Render lib object::
  *
  *    <input type="text" id="name" />
- *    <f:widget.autocomplete for="name" objects="{posts}" searchProperty="author">
+ *    <f:widget.autocomplete for="name" objects="{posts}" searchProperty="author" storeSession="false">
  *
  * Output::
  *
  *    <input type="text" id="name" />
  *
  * The input field and the required JavaScript for the Ajax communication.
+ * The storeSession attribute can be used in any widget
+ * and will prevent cookie creation / session storage for the widget.
  * See Resources/Private/Templates/ViewHelpers/Widget/Autocomplete/Index.html
  */
 class AutocompleteViewHelper extends \TYPO3\CMS\Fluid\Core\Widget\AbstractWidgetViewHelper
diff --git a/typo3/sysext/fluid/Classes/ViewHelpers/Widget/PaginateViewHelper.php b/typo3/sysext/fluid/Classes/ViewHelpers/Widget/PaginateViewHelper.php
index 9204436379eaa11105d23a12934e28906fc55789..d366d533a9033d407370248a0e48c429fed1cf24 100644
--- a/typo3/sysext/fluid/Classes/ViewHelpers/Widget/PaginateViewHelper.php
+++ b/typo3/sysext/fluid/Classes/ViewHelpers/Widget/PaginateViewHelper.php
@@ -43,6 +43,8 @@ use TYPO3\CMS\Fluid\Core\Widget\AbstractWidgetViewHelper;
  *       a <f:for> loop.
  *    </f:widget.paginate>
  *
+ * The storeSession attribute can be used in any widget and will prevent cookie creation / session storage for the widget.
+ *
  * Performance characteristics
  * ===========================
  *
diff --git a/typo3/sysext/linkvalidator/Documentation/Configuration/Index.rst b/typo3/sysext/linkvalidator/Documentation/Configuration/Index.rst
index 7518e24a041e41b66f970bfdb90c0c62dc43b9df..a5e02ad595d18cc4caa0fe96017413cf723e03c4 100644
--- a/typo3/sysext/linkvalidator/Documentation/Configuration/Index.rst
+++ b/typo3/sysext/linkvalidator/Documentation/Configuration/Index.rst
@@ -13,7 +13,7 @@ Configuration
 -------------
 
 You can find the standard configuration in
-:file:`EXT:linkvalidator/Configuration/TsConfig/Page/pagetsconfig.txt`.
+:file:`EXT:linkvalidator/Configuration/TsConfig/Page/pagetsconfig.tsconfig`.
 
 This may serve as an example on how to configure the extension for
 your needs.
diff --git a/typo3/sysext/linkvalidator/Documentation/Development/Index.rst b/typo3/sysext/linkvalidator/Documentation/Development/Index.rst
new file mode 100644
index 0000000000000000000000000000000000000000..8f95f730180e83403b6efdc24a693a229132df7d
--- /dev/null
+++ b/typo3/sysext/linkvalidator/Documentation/Development/Index.rst
@@ -0,0 +1,39 @@
+.. include:: ../Includes.txt
+
+
+.. _development:
+
+Development / Background Information
+------------------------------------
+
+In this chapter, we want to provide a bit of information on how the linkvalidator works internally.
+
+The procedure for marking the broken links in the RTE is as follow:
+
+#. RTE content is fetched from the database.
+   Before it is displayed in the edit form, RTE transformations are performed.
+#. The transformation function parses the text and detects links.
+#. For each link, a PSR-14 event (:php:`TYPO3\CMS\Core\Html\Event\BrokenLinkAnalysisEvent`) is dispatched.
+#. If a listener is attached, it may set the link as broken and will set the link as "checked".
+#. If a link is detected as broken, RTE will mark it as broken.
+
+Take a look at the :file:`Services.yaml` where the listeners for that event are registered:
+
+.. code-block:: yaml
+
+  TYPO3\CMS\Linkvalidator\EventListener\CheckBrokenRteLinkEventListener:
+    tags:
+      - name: event.listener
+        identifier: 'rte-check-link-external'
+        event: TYPO3\CMS\Core\Html\Event\BrokenLinkAnalysisEvent
+        method: 'checkExternalLink'
+      - name: event.listener
+        identifier: 'rte-check-link-to-page'
+        event: TYPO3\CMS\Core\Html\Event\BrokenLinkAnalysisEvent
+        method: 'checkPageLink'
+      - name: event.listener
+        identifier: 'rte-check-link-to-file'
+        event: TYPO3\CMS\Core\Html\Event\BrokenLinkAnalysisEvent
+        method: 'checkFileLink'
+
+File, Page and External Links are checked via these EventListeners.
diff --git a/typo3/sysext/linkvalidator/Documentation/Index.rst b/typo3/sysext/linkvalidator/Documentation/Index.rst
index 72eb73a84ab7f74699960500f6bd922f0a6e4768..181bd7e3dc4278b7aabc5b4fa050775acc9765fd 100644
--- a/typo3/sysext/linkvalidator/Documentation/Index.rst
+++ b/typo3/sysext/linkvalidator/Documentation/Index.rst
@@ -64,5 +64,6 @@ a GNU/GPL CMS/Framework available from `www.typo3.org
    Configuration/Index
    LargeSites/Index
    NextSteps/Index
+   Development/Index
    Targets
 
diff --git a/typo3/sysext/rte_ckeditor/Documentation/Configuration/Concepts.rst b/typo3/sysext/rte_ckeditor/Documentation/Configuration/Concepts.rst
index ac0a9185219f7fcf06609f0da144234c1aa8537b..4ddb5d84bf0d0d52909194e2702fb2f40efadcb7 100644
--- a/typo3/sysext/rte_ckeditor/Documentation/Configuration/Concepts.rst
+++ b/typo3/sysext/rte_ckeditor/Documentation/Configuration/Concepts.rst
@@ -180,6 +180,14 @@ Page TSconfig as well.
 
 .. todo: real world example usages
 
+The loading order for configuration is:
+
+#. preset defined for a specific field via PageTS
+#. richtextConfiguration defined for a specific field via TCA
+#. general preset defined via PageTS
+#. default
+
+
 For more examples, see :ref:`t3tsconfig:pageTsRte` in "TSconfig Reference".