Skip to content
Snippets Groups Projects
  1. Jul 25, 2014
  2. Jul 24, 2014
  3. Jul 23, 2014
  4. Jul 22, 2014
  5. Jul 21, 2014
  6. Jul 20, 2014
  7. Jul 19, 2014
  8. Jul 18, 2014
  9. Jul 15, 2014
  10. Jul 11, 2014
    • Andreas Wolf's avatar
      [CLEANUP] Reformat IRRE JS code · ebfd4674
      Andreas Wolf authored
      This is an automatic reformat performed by PhpStorm, to get rid of some
      ugly constructs like one-line inline methods.
      
      Change-Id: Id24666c673b3822916f9c5233c0b34ce7d38e7aa
      Related: #58475
      Releases: 6.3
      Reviewed-on: https://review.typo3.org/29833
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      Reviewed-by: Andreas Wolf
      Tested-by: Andreas Wolf
      ebfd4674
    • Oliver Hader's avatar
      [TASK] Extend Regular DataHandler functional tests · 8128e10e
      Oliver Hader authored
      * add third tt_content element with localization in live context
      * add new tt_content delete placeholder in different workspace
      * populate changes to all scenarios in live and workspace context
      
      Releases: 6.2, 6.3
      Resolves: #59881
      Change-Id: I644e264048a5c33c0a613d5f8440975cabd40721
      Reviewed-on: https://review.typo3.org/31141
      Reviewed-by: Oliver Hader
      Tested-by: Oliver Hader
      8128e10e
  11. Jul 10, 2014
    • Helmut Hummel's avatar
      [BUGFIX] Use PATH_site in cache identifier for package cache · d3c95a1c
      Helmut Hummel authored
      The package cache writes paths to extension directories
      (TYPO3_LOADED_EXT) into the cache.
      
      This will result in wrong caches when the same
      TYPO3 instance is called from a different absolute
      directory e.g. from a different mount or symlink.
      
      To avoid this, the cache identifier now includes
      PATH_site which is the current absolute path
      of the TYPO3 instance.
      
      Additionally we now only include the modification
      time of the package states file instead of the
      md5 of the complete content into account, which should
      be much faster and also enough.
      
      Resolves: #58288
      Releases: 6.2, 6.3
      Change-Id: I7c8de41c608beab282f2b8bbeab39f257a9a6a6f
      Reviewed-on: https://review.typo3.org/31565
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      Reviewed-by: Stefan Neufeind
      Tested-by: Stefan Neufeind
      d3c95a1c
    • Helmut Hummel's avatar
      [TASK] Clarify exception message for addPlugin() · 15d0afcd
      Helmut Hummel authored
      Add verbosity to the exception message to make it
      more clear what is going wrong.
      
      Releases: 6.2, 6.3
      Resolves: #60225
      Change-Id: I7bb4a16ff94d05b8b97633383d42c61aa600b1cf
      Reviewed-on: https://review.typo3.org/31556
      Reviewed-by: Christian Kuhn
      Reviewed-by: Markus Klein
      Reviewed-by: Wouter Wolters
      Tested-by: Christian Kuhn
      Reviewed-by: Alexander Opitz
      Tested-by: Alexander Opitz
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      15d0afcd
  12. Jul 09, 2014
  13. Jul 08, 2014
    • Marc Bastian Heinrichs's avatar
      [TASK] Log errors after initial t3d import also if pages are created · ea791b84
      Marc Bastian Heinrichs authored
      Errors are only logged if no pages are created on initial data.t3d
      import. They should be logged generally.
      
      Resolves: #58798
      Releases: 6.3, 6.2
      Change-Id: Ia859d12ec567a1b64bb9b65dd41f5ba996de3139
      Reviewed-on: https://review.typo3.org/30101
      Reviewed-by: Nicole Cordes
      Tested-by: Nicole Cordes
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      ea791b84
    • Markus Klein's avatar
      [BUGFIX] Followup to CacheBackend patch · 3cbad6cd
      Markus Klein authored
      Re-add a missing use statement that vanished during rebase.
      
      Resolves: #59587
      Releases: 6.3, 6.2, 6.1
      Change-Id: I16ac1b9d5a00c4300202eaef493de43fc988a81d
      Reviewed-on: https://review.typo3.org/31520
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      3cbad6cd
    • Alexander Opitz's avatar
      [BUGFIX] Too many tags by identifier in CacheBackends · 3d930170
      Alexander Opitz authored
      This applies to Apc/Memcached/Wincache/Xcache backends.
      
      After an array_merge the values aren't unique. This leads to duplicate
      tags per identifier. This patch changes that and also moves the
      findTagsByIdentifier call out of the foreach loop.
      
      Resolves: #59587
      Releases: 6.3, 6.2, 6.1
      Change-Id: Id31e16fa4bba11038ba692a483fb9a33808d95fa
      Reviewed-on: https://review.typo3.org/30767
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      3d930170
    • Markus Klein's avatar
      [BUGFIX] Fix wrong type hint for emitAfterExtensionT3DImportSignal() · 97cfa181
      Markus Klein authored
      Fix a wrong type hint for the second parameter in
      InstallUtility::emitAfterExtensionT3DImportSignal(). The parameter is of
      type integer and not array.
      
      Resolves: #60179
      Releases: 6.3, 6.2
      Change-Id: Iccfb7445bd374edaecfd3408380034dbec82e539
      Reviewed-on: https://review.typo3.org/31503
      Reviewed-by: Wouter Wolters
      Reviewed-by: Oliver Hader
      Tested-by: Oliver Hader
      97cfa181
    • Oliver Hader's avatar
      [BUGFIX] Superfluous SQL queries on copying records · 0fa74c59
      Oliver Hader authored
      On copying a page in the backend there are lots of superfluous
      SQL queries containing "... WHERE uid=0". The reason for that
      is, that DataHandler::recordInfo() is called for each field
      which then tries to fetch the database record for the given
      uid "NEW...". Casting the new record placeholder to an integer
      value ends up with the "uid=0" condition.
      
      In a test with copying a page with some sub-pages, there was a
      total of about 1300 SQL queries, 300 of them have been those
      superfluous "uid=0" SELECT statements.
      
      Change-Id: Ib7006a7ceb52376032df8eaefaa918407718a482
      Resolves: #58357
      Releases: 6.2, 6.3
      Reviewed-on: https://review.typo3.org/31310
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      Reviewed-by: Sascha Egerer
      Tested-by: Sascha Egerer
      Reviewed-by: Oliver Hader
      Tested-by: Oliver Hader
      0fa74c59