Skip to content
Snippets Groups Projects
  1. Jun 02, 2014
    • Markus Klein's avatar
      [BUGFIX] TCA maxitems for FAL permissions wrong · 1e6c9544
      Markus Klein authored
      The setting for maxitems in the TCA of be_users and be_groups for
      FAL permissions are wrong.
      Fix the value to match the number of available options.
      
      Resolves: #59263
      Releases: 6.2
      Change-Id: Ib38aab8bbd1f5fe9287ff0523139f88520f27e37
      Reviewed-on: https://review.typo3.org/30518
      Reviewed-by: Frans Saris
      Reviewed-by: Alexander Opitz
      Tested-by: Alexander Opitz
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      1e6c9544
    • Helmut Hummel's avatar
      [BUGFIX] Make object access work with ObjectStorage · 9af2142b
      Helmut Hummel authored
      ObjectAccess->getPropertyPath() does not work with
      ObjectStorage and numerical indexes, but it should be
      because without it form fluid fields cannot be
      properly handled as the value is always null.
      
      Fixing fetching objects from ObjectStorage by index
      will also enable shorter access of single objects in Fluid.
      
      Imagine you want to render the first image in your
      template. Previously you had to write this:
      
      <f:for each="{object.images}" as="image" iteration="iterator">
      	<f:if condition="{iterator.isFirst}">
      		<f:image image="{image}" alt="" width="50"/>
      	</f:if>
      </f:for>
      
      Now you can just write:
      
      <f:image image="{object.images.0}" alt="" width="50"/>
      
      Resolves: #37126
      Related: #37000
      Releases: 6.2
      Change-Id: I45122bd145b5a179ad3e9e3894520f9a614906c8
      Reviewed-on: https://review.typo3.org/29923
      Reviewed-by: Markus Klein
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      Reviewed-by: Fabien Udriot
      Reviewed-by: Tymoteusz Motylewski
      Tested-by: Tymoteusz Motylewski
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      9af2142b
  2. Jun 01, 2014
    • Helmut Hummel's avatar
      [BUGFIX] Keep session cookie if session data is present · 1d23e5e0
      Helmut Hummel authored
      The AbstractUserAuthentication::checkAuthentication() method calls
      the logoff() method on every failed login attempt.
      
      Since a logoff also causes a removal of the cookie,
      any (anonymous) session data will be left unaccessible.
      
      Keep the cookie when session data is present.
      
      Releases: 6.2
      Resolves: #58713
      Change-Id: I744456f62197a7278635d8564d4883564d954dd2
      Reviewed-on: https://review.typo3.org/30485
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      Reviewed-by: Wouter Wolters
      Reviewed-by: Stefan Neufeind
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      1d23e5e0
  3. May 30, 2014
    • Frans Saris's avatar
      [BUGFIX] Always add wrapping div if dividers2tabs is disabled · d357653b
      Frans Saris authored
      TCEforms is not wrapped in a div when dividers2tabs is disabled 
      and a inline-element form element is present. As a result there 
      is no background image/color shown.
      
      This changes removes the check as the wrap is also needed when
      inline-elements are present.
      
      Resolves: #59163
      Releases: 6.2
      Change-Id: I8772fce0d99bacdf18692308c700c02c0a0defcf
      Reviewed-on: https://review.typo3.org/30461
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Kay Strobach
      Tested-by: Kay Strobach
      Reviewed-by: Frans Saris
      Tested-by: Frans Saris
      d357653b
  4. May 29, 2014
  5. May 28, 2014
    • Michael Schams's avatar
      [BUGFIX] Correct minor typo in "About TYPO3 CMS" · 8bdcbc19
      Michael Schams authored
      This patch corrects a minor typo in module: Web -> About TYPO3 CMS.
      It currently reads "TYPO3 CMS is a enterprise-class...", but it should
      read: "...is an enterprise..." ("an" with a "n").
      
      Resolves: #59187
      Releases: 6.2
      Change-Id: I4e77e54dded08ef4cbdd484d81660a1e39241986
      Reviewed-on: https://review.typo3.org/30476
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      8bdcbc19
    • David Greiner's avatar
      [BUGFIX] Parent language is not applied to new child records · cf9ca274
      David Greiner authored
      If localizing a parent-child structure, usually the language
      of the parent element shall be applied to related child records
      as well as new child records.
      
      Due to a missing array segment, the accordant section in the
      the InlineElement source code never was processed.
      
      Resolves: #57063
      Releases: 6.2, 6.1
      Change-Id: I7e563044f9889538f9b8171f71f7685722db8266
      Reviewed-on: https://review.typo3.org/30448
      Reviewed-by: Markus Klein
      Reviewed-by: David Greiner
      Reviewed-by: Wouter Wolters
      Reviewed-by: Oliver Hader
      Tested-by: Oliver Hader
      cf9ca274
    • Frans Saris's avatar
      [BUGFIX] Added missing TCEforms palette-header padding · 552e8b28
      Frans Saris authored
      With the cleanup of the backend styles a padding of the
      pallete header got missing.
      
      This patch adds this padding just like the other headers
      in the TCEforms.
      
      Resolves: #59160
      Releases: 6.2
      Change-Id: I25ca0ccb0bbd7f4f6d014e12f1cebe1b12050718
      Reviewed-on: https://review.typo3.org/30458
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      552e8b28
  6. May 26, 2014
  7. May 23, 2014
    • Stanislas Rolland's avatar
      [BUGFIX] Inserting custom element in RTE throws exception · 9a47bd20
      Stanislas Rolland authored
      Problem: Token validation fails.
      Solution: Use BackendUtility::getModuleUrl to ensure validity of token.
      
      Resolves: #58371
      Releases: 6.2
      Change-Id: I334826dbeb2a11a6b28d4fd610670fe4d7558e1a
      Reviewed-on: https://review.typo3.org/30221
      Tested-by: Chris Müller
      Reviewed-by: Stanislas Rolland
      Tested-by: Stanislas Rolland
      9a47bd20
    • Marc Bastian Heinrichs's avatar
      [BUGFIX] Alternative implementations for view helpers do not work · 03bf947c
      Marc Bastian Heinrichs authored
      Extbase allows to register alternative implementations for
      objects. However that does not work for view helpers using
      a closing tag. The resolved (alternative) object is compared
      to the name of the original view helper and throws an
      exception like:
      
        #1224485398: Templating tags not properly nested. Expected:
        "AlternativeViewHelper"; Actual: "OriginalViewHelper"
      
      A simple solution is to save the class name of the object returned
      from the object manager in a runtime cache and check this when
      resolving a view helper name. A nice side effect is, that a same
      view helper name must not be calculated over and over again.
      
      Fixes: #52272
      Releases: 6.0, 6.1, 6.2
      Change-Id: Ie49e5e83c779b4748dc2059f8fbc85552ce4b406
      Reviewed-on: https://review.typo3.org/24057
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      Reviewed-by: Oliver Hader
      Tested-by: Oliver Hader
      03bf947c
    • Marc Bastian Heinrichs's avatar
      [TASK] Raise maximum settable numbers in export · 68751f60
      Marc Bastian Heinrichs authored
      The maximums for today's exports are limited to strict.
      It's 10MB for a settable file size included in exports;
      raise it to 1000MB. The maximum settable number of
      records is 10000; raise it to 1000000.
      
      Resolves: #58912
      Releases: 6.2
      Change-Id: If2613b453cfbfda5c4909770064f112c23eca83b
      Reviewed-on: https://review.typo3.org/30202
      Reviewed-by: Tymoteusz Motylewski
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      68751f60
    • Sebastian Michaelsen's avatar
      [CLEANUP] Code cleanup for LanguageService · ef2ec950
      Sebastian Michaelsen authored
      * Avoid unnecessary fully qualified class names
      * Add return NULL for consistency if a method only returns a value
        in some cases
      
      Releases: 6.2
      Resolves: #59006
      Change-Id: I8c005a3e20fc49d65123e415025bef1c41ad7854
      Reviewed-on: https://review.typo3.org/30260
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      Reviewed-by: Oliver Klee
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      ef2ec950
    • Marc Bastian Heinrichs's avatar
      [BUGFIX] Fix saving non public export presets · 28fa5811
      Marc Bastian Heinrichs authored
      Fix sql error "Column 'public' cannot be null" on saving
      with unchecked box public.
      
      Resolves: #57405
      Releases: 6.2
      Change-Id: I1582728cc56781fdc12409956008fc82a6cd0d03
      Reviewed-on: https://review.typo3.org/30112
      Reviewed-by: Fabien Udriot
      Tested-by: Fabien Udriot
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      28fa5811
    • Caspar Stuebs's avatar
      [BUGFIX] Set default permissions for new files to 0664 · 38b178bc
      Caspar Stuebs authored
      Change-Id: I4c71414dca763d9ba29ab93b18a0389941f51af7
      Resolves: #58809
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/30113
      Reviewed-by: Dmitry Dulepov
      Reviewed-by: Oliver Klee
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      38b178bc
    • Thomas Löffler's avatar
      [BUGFIX] Fix url for youtube embeds · 6118ac5f
      Thomas Löffler authored
      Additionally solve the problem when http:// is missing
      due to usage of the link wizard.
      
      Change-Id: I676d14b4ddf81d5d3ec0fc0d0ebb32d08910047a
      Resolves: #58569
      Resolves: #58986
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/29952
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      6118ac5f
  8. May 22, 2014
    • Markus Klein's avatar
      [BUGFIX] Wrong HTML in locallang_csh_pages.xlf · 0c692c99
      Markus Klein authored
      lang/4.5/locallang_csh_pages.xlf contains invalid
      HTML structure a <p> tag should actually be a <b> tag.
      
      Resolves: #58936
      Releases: 6.2, 6.1, 4.5
      Change-Id: Id37d424296628202d8d434e0cf9cafd8529da2c3
      Reviewed-on: https://review.typo3.org/30220
      Reviewed-by: Stefan Neufeind
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      0c692c99
    • Markus Klein's avatar
      [BUGFIX] Fix relative path resolution in include static · bb15d44c
      Markus Klein authored
      Fix the usage of relative paths in INCLUDE_TYPOSCRIPT inclusions of
      static templates from extensions.
      
      EXT:myext/Configuration/TypoScript/setup.txt:
      <INCLUDE_TYPOSCRIPT: source="DIR:./Setup/">
      
      EXT:myext/Configuration/TypoScript/Setup/ holds some TS files.
      
      Resolves: #57447
      Releases: 6.2
      Change-Id: I64ba190fa6959eb27a2d6f1c278cfb9c9c3cbfaf
      Reviewed-on: https://review.typo3.org/29468
      Reviewed-by: Stefan Neufeind
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Jan Kiesewetter
      Tested-by: Jan Kiesewetter
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      bb15d44c
    • Markus Klein's avatar
      [BUGFIX] PathUtility::get...FileOrPath() does not work with basepath · c87150d0
      Markus Klein authored
      PathUtility::getAbsolutePathOfRelativeReferencedFileOrPath()
      Add a check to the function to identify a given basepath as described
      in the function header.
      
      Resolves: #57918
      Releases: 6.2, 6.1
      Change-Id: I8de12cb917b2f32490bb160686ce06a036abfd85
      Reviewed-on: https://review.typo3.org/29467
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      c87150d0
    • Helmut Hummel's avatar
      [BUGFIX] Fix failing unit tests for HTTP host check in CLI mode · c10bcb8d
      Helmut Hummel authored
      The unit tests for the recent HTTP host fix are failing
      if executed in CLI mode.
      In CLI mode no server environments and HTTP headers are available,
      that's why the behavior needs to know about the
      test execution process.
      
      We solve this by mocking allowed request types.
      
      Resolves: #59022
      Releases: 6.2, 6.1, 6.0
      Change-Id: I3c93d181dcec5f34064798e7c31240877fde610d
      Reviewed-on: https://review.typo3.org/30323
      Reviewed-by: Nicole Cordes
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      c10bcb8d
    • TYPO3 Release Team's avatar
      [TASK] Set TYPO3 version to 6.2.4-dev · ff4db83b
      TYPO3 Release Team authored
      Change-Id: Ic42722b40b91e61dfd839241b91b9ff31a322259
      Reviewed-on: https://review.typo3.org/30317
      Reviewed-by: TYPO3 Release Team
      Tested-by: TYPO3 Release Team
      ff4db83b
    • TYPO3 Release Team's avatar
      [RELEASE] Release of TYPO3 6.2.3 · 30b091ae
      TYPO3 Release Team authored
      Change-Id: Ib7b6505d59bdec51f537afec80678c11c0ad0b89
      Reviewed-on: https://review.typo3.org/30316
      Reviewed-by: TYPO3 Release Team
      Tested-by: TYPO3 Release Team
      2 tags
      30b091ae
    • Helmut Hummel's avatar
      [SECURITY] Add trusted HTTP_HOST configuration · ab7a9f85
      Helmut Hummel authored
      TYPO3 uses the values of HTTP_HOST in several
      places without validating them. This could
      lead to a situation where links are generated
      using the host part from HTTP_HOST.
      
      Since HTTP_HOST headers are user input and
      can be spoofed by an attacker, it leads
      into several potential and actual security issues.
      
      To address this, a configuration option for
      trusted hosts is added, which is evaluated every
      time getIndpEnv('HTTP_HOST') is called.
      
      The configuration option is
      
      $GLOBALS['TYPO3_CONF_VARS']['SYS']['trustedHostsPattern']
      
      and can contain either a regular expression or the
      value "SERVER_NAME"
      
      To properly output the exception message in case
      the trustedHostPattern does not match,
      we need to adapt the exception handlers slightly
      to not log information in this case and to actually
      show the message even in production context to not
      confuse admins on what is currently going wrong.
      
      To not break all existing installations, the default
      pattern is set to 'SERVER_NAME' which allows all
      HTTP_HOST values matching the SERVER_NAME (and
      optionally the SERVER_PORT if a port is specified
      in the HTTP_HOST value).
      
      This will secure all installation which use properly
      configured name based virtual hosts, but leaves
      installations where the web server is not bound
      to a specific host name still in an insecure state.
      
      Change-Id: I42fe77fe919755942636108a71c31175647449a9
      Fixes: #30377
      Releases: 6.2, 6.1, 6.0, 4.7, 4.5
      Security-Bulletin: TYPO3-CORE-SA-2014-001
      Reviewed-on: https://review.typo3.org/30307
      Reviewed-by: Oliver Hader
      Tested-by: Oliver Hader
      ab7a9f85
    • Nicole Cordes's avatar
      [SECURITY] XSS in (old) extension manager information function · 3858e461
      Nicole Cordes authored
      Needs to be fixed also in 6.x, but the affected function is not
      used anymore.
      
      Change-Id: If10b0cf25015eada0657aaebc19da3e3364f738a
      Fixes: #54111
      Fixes: #54113
      Releases: 6.2, 6.1, 6.0, 4.7, 4.5
      Security-Commit: d23f0ccc8960832c184a0e6c5daced98a0b6d096
      Security-Bulletin: TYPO3-CORE-SA-2014-001
      Reviewed-on: https://review.typo3.org/30306
      Reviewed-by: Oliver Hader
      Tested-by: Oliver Hader
      3858e461
    • Marcus Krause's avatar
      [SECURITY] XSS in new content element wizard · 6c6ae4b6
      Marcus Krause authored
      Sanitize user-input colPos in new content element wizard.
      
      Change-Id: Ifa90ea1ede3b6c2a5436c505993c533803306d01
      Fixes: #48695
      Releases: 6.2, 6.1, 6.0, 4.7, 4.5
      Security-Commit: bad0160450fb5786e1cb1e393c76c3da38c2ffe7
      Security-Bulletin: TYPO3-CORE-SA-2014-001
      Reviewed-on: https://review.typo3.org/30305
      Reviewed-by: Oliver Hader
      Tested-by: Oliver Hader
      6c6ae4b6
    • Marc Bastian Heinrichs's avatar
      [SECURITY] XSS in template tools on root page · 1e2843b4
      Marc Bastian Heinrichs authored
      Change-Id: I2b5214e666d1c9edc5354dd3983401038e9aaf66
      Fixes: #54109
      Releases: 6.2, 6.1, 6.0, 4.7, 4.5
      Security-Commit: e17bc3297e95f6ffd5d1df682235bfaac7a5ad53
      Security-Bulletin: TYPO3-CORE-SA-2014-001
      Reviewed-on: https://review.typo3.org/30304
      Reviewed-by: Oliver Hader
      Tested-by: Oliver Hader
      1e2843b4
    • Helmut Hummel's avatar
      [SECURITY] XSS in Backend Layout Wizard · 938f7f84
      Helmut Hummel authored
      Change-Id: I096d26b3eee20493b146633bda11529890be59dc
      Fixes: #57576
      Releases: 6.2, 6.1, 6.0, 4.7, 4.5
      Security-Commit: b49bd72b12f709e1c3dffd4f471d138ad1dcceb5
      Security-Bulletin: TYPO3-CORE-SA-2014-001
      Reviewed-on: https://review.typo3.org/30303
      Reviewed-by: Oliver Hader
      Tested-by: Oliver Hader
      938f7f84
    • Jigal van Hemert's avatar
      [SECURITY] Encode URL for use in JavaScript · 5ecbf238
      Jigal van Hemert authored
      The url for the Open in New Window button must be quoted for
      use in JavaScript to prevent XSS issues.
      
      Change-Id: I3e55f31c3c857989d71a5ef1a0368b96aa5e2c31
      Fixes: #48693
      Releases: 6.2, 6.1, 6.0, 4.7, 4.5
      Security-Commit: 4d9cd3e6f589c77b5a366497a33f7eb2099dc749
      Security-Bulletin: TYPO3-CORE-SA-2014-001
      Reviewed-on: https://review.typo3.org/30302
      Reviewed-by: Oliver Hader
      Tested-by: Oliver Hader
      5ecbf238
    • Markus Klein's avatar
      [SECURITY] Session timeout can be circumvented once · d591b1d4
      Markus Klein authored
      Fix the AbstractUserAuthentication class to properly invalidate
      the current session if it timed out.
      
      Change-Id: Id50ee1abd197674fa9379b52b46b63ecf770c964
      Fixes: #57673
      Releases: 6.2
      Security-Commit: 38e24be1ff26fa181f16b91c57a0fcbe4da5065a
      Security-Bulletin: TYPO3-CORE-SA-2014-001
      Reviewed-on: https://review.typo3.org/30301
      Reviewed-by: Oliver Hader
      Tested-by: Oliver Hader
      d591b1d4
    • Helmut Hummel's avatar
      [SECURITY] Remove charts.swf to get rid of XSS vulnerability · d554ac53
      Helmut Hummel authored
      The file charts.swf is vulnerable to XSS, is delivered
      by ExtJS but not used in TYPO3 CMS at all.
      
      Since the vendor of ExtJS did not fix this vulnerability,
      we decided to remove it from TYPO3 sources.
      
      Change-Id: Ib30cac84983f5a30956d0a09af933b0fbca1d6ff
      Fixes: #54526
      Releases: 6.2, 6.1, 6.0, 4.7, 4.5
      Security-Commit: 2402b6cfa3ab2a054ef3e28f3d8de8f7dfee17ec
      Security-Bulletin: TYPO3-CORE-SA-2014-001
      Reviewed-on: https://review.typo3.org/30300
      Reviewed-by: Oliver Hader
      Tested-by: Oliver Hader
      d554ac53
  9. May 20, 2014
    • Stanislas Rolland's avatar
      [BUGFIX] RTE Remove Format removes too much · 4a3e526a
      Stanislas Rolland authored
      The remove format function with msword selected removes too much
      content when there is more than one style block in content.
      
      Note: Thanks to Volker Burggräf
      
      Resolves: #58310
      Releases: 6.2, 6.1, 4.5
      Change-Id: Ia29767239d92fde20ceee97ece47786d3fd3a9a5
      Reviewed-on: https://review.typo3.org/30223
      Reviewed-by: Stanislas Rolland
      Tested-by: Stanislas Rolland
      4a3e526a
  10. May 19, 2014
    • Robert Vock's avatar
      [BUGFIX] indexed_search plugin cannot be translated · 849e5f11
      Robert Vock authored
      The experimental extbase plugin of indexed_search is not
      translatable on Pootle because it is still using locallang.xml
      instead of a XLIFF translation file.
      
      Change-Id: Ia3a45573737f8be0f802bfdbf5bd4f36add66b07
      Resolves: #58796
      Releases: 6.2, 6.1
      Reviewed-on: https://review.typo3.org/30103
      Reviewed-by: Dmitry Dulepov
      Tested-by: Dmitry Dulepov
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      849e5f11
  11. May 18, 2014
    • Frans Saris's avatar
      [BUGFIX] Missing check if $row[t3ver_state] is set in IconUtility · 3d5143b6
      Frans Saris authored
      As a result of a missing check if $row['t3ver_state'] exists,
      an exception is thrown when IconUtility::getIcon() is called
      with only the required params set.
      
      This patch adds the missing check.
      
      Resolves: #58846
      Releases: 6.2
      Change-Id: I70da9ee79a5c0ee1ad4fe8892e8ed28f904a11da
      Reviewed-on: https://review.typo3.org/30152
      Reviewed-by: Fabien Udriot
      Tested-by: Fabien Udriot
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      3d5143b6
  12. May 16, 2014
    • Oliver Hader's avatar
      [TASK] Cleanup DataHandler functional tests · 8b264890
      Oliver Hader authored
      Some DataHandler functional test cases are duplicated or are not
      required anymore. Here's a list of what has changed and moved
      into some existing testing structure:
      
      Core:
      * DataHandlerTest::canCreateTtContent
      ** Regular\Modify\ActionTest::createContents
      * DataHandlerTest::canLocalizeTtContent
      ** Regular\Modify\ActionTest::localizeContent
      * DataHandlerTest::canCopyPasteTtContent
      ** Regular\Modify\ActionTest::copyPasteContent
      * DataHandlerTest::canCutPasteTtContent
      ** Regular\Modify\ActionTest::movePasteContentToDifferentPage
      * IRRE\MtoNMMAsymetricLocalizationKeepTest::*
      ** IRRE\CSV\Modify\ActionTest::localizeParentContent*
      ** IRRE\ForeignField\Modify\ActionTest::localizeParentContent*
      * IRRE\MtoNMMAsymetricLocalizationSelectTest::*
      ** IRRE\CSV\Modify\ActionTest::localizeParentContent*
      ** IRRE\ForeignField\Modify\ActionTest::localizeParentContent*
      
      Workspaces:
      * IRRE\MToNMMTest::*
      ** ManyToMany\Modify\ActionTest::*
      ** ManyToMany\Publish\ActionTest::*
      ** ManyToMany\PublishAll\ActionTest::*
      * IRRE\OneToNCSVTest::*
      ** IRRE\CSV\Modify\ActionTest::*
      ** IRRE\CSV\Publish\ActionTest::*
      ** IRRE\CSV\PublishAll\ActionTest::*
      * IRRE\OneToNForeignFieldTest::*
      ** IRRE\ForeignField\Modify\ActionTest::*
      ** IRRE\ForeignField\Publish\ActionTest::*
      ** IRRE\ForeignField\PublishAll\ActionTest::*
      
      Resolves: #58870
      Releases: 6.2
      Change-Id: I0c75fcf826d05f8515a5609cb00c153992ba7b44
      Reviewed-on: https://review.typo3.org/30177
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      8b264890