Skip to content
Snippets Groups Projects
  1. Jan 29, 2014
    • Thomas Maroschik's avatar
      [BUGFIX] Display detected fatal in extension check · 7bc9a4e9
      Thomas Maroschik authored
      In the installer fatals can happen during updates of
      very outdated extensions. Many updates can lead to a
      redirect to the extension check where the user gets
      displayed a message that a fatal has been detected.
      But the detected fatal error itself is not displayed.
      
      This patch passes the error as url parameter to the
      extension check and displays it there.
      
      Fixes: #54943
      Releases: 6.2
      Change-Id: I111df5d5411015b21c4b2b5e9be3b83b311c8bc5
      Reviewed-on: https://review.typo3.org/26781
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      Reviewed-by: Thomas Maroschik
      Reviewed-by: Wouter Wolters
      Reviewed-by: Stefan Neufeind
      Reviewed-by: Markus Klein
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      Tested-by: Wouter Wolters
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      7bc9a4e9
    • Christian Kuhn's avatar
      [BUGFIX] Tame PackageStates.php in functional tests · a246231c
      Christian Kuhn authored
      Functional test bootstrap creates a full new instance
      within typo3temp together with an own database. Goal is
      a controlled environment without dependencies to the
      parent instance.
      
      The patch introduces separation of PackageStates.php. The file
      is now compiled based on a static list of active core extensions
      and optional additional extensions for specific functional tests.
      
      Change-Id: I39e37a16b5cef5b6b1dab2ce3c4e8efc42cecbe7
      Resolves: #55409
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/27108
      Reviewed-by: Thomas Maroschik
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      a246231c
    • Tim Lochmueller's avatar
      [TASK] Remove useless count function calls in stdWrap · 96a11726
      Tim Lochmueller authored
      Remove two count calls in the often called stdWrap function
      to increase the performance. Furthermore remove the
      is_callable calls, because the hook interface take care
      that the methods exist and are callable.
      
      Resolves: #55372
      Releases: 6.2
      Change-Id: Ifc8f831a7b101c5c56f717c23024fae7b71b71a9
      Reviewed-on: https://review.typo3.org/27078
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      Reviewed-by: Michiel Roos
      Tested-by: Michiel Roos
      Reviewed-by: Xavier Perseguers
      Reviewed-by: Benjamin Mack
      Tested-by: Benjamin Mack
      96a11726
    • Helmut Hummel's avatar
      [TASK] Be more expressive in error condition · 5f873f07
      Helmut Hummel authored
      If lockSSL is set to 1 and the backend is not
      accessed via SSL currently a 404 header is sent
      with no message body. The same happens when the
      client IP address does not mach the configured
      list of allowed addresses.
      
      Give a more useful hint for users in these cases
      by throwing an Exception.
      
      Resolves: #51378
      Releases: 6.2
      Change-Id: Ic76d8415c482e78bdea7e57e1cb5dab21a49969f
      Reviewed-on: https://review.typo3.org/26718
      Reviewed-by: Michiel Roos
      Tested-by: Michiel Roos
      Tested-by: Georg Ringer
      Reviewed-by: Oliver Klee
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      Reviewed-by: Marcin Sągol
      Reviewed-by: Felix Kopp
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      5f873f07
    • Helmut Hummel's avatar
      [BUGFIX] Prevent strings from being autoloaded · b15348a4
      Helmut Hummel authored
      The introduction of a TypeConverter for Enumaration
      types in #52762 added is_subclass() calls to
      getPlainValue() in the DatabaseBackends. These methods
      are meant to convert objects to simply types but are
      regularly called with simple types, in particular strings.
      
      Since is_subclass() also works with strings,
      The class loader is triggered when these methods
      are called with a table name like "tx_ext_domain_model_foo".
      
      This triggers an issue #55418 in the class loader especially
      on case insensitive filesystems.
      
      Instead of is_subclass we now use instanceof to make sure
      we only check for conversion if the value is an object.
      
      Additionally this change fixes a wrong case statement which
      also was introduced in #52762
      
      Resolves: #54275
      Change-Id: If1b2a28a2623e49dfb47720641935c6f24447c19
      Reviewed-on: https://review.typo3.org/27079
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      b15348a4
    • Michiel Roos's avatar
      [TASK] Replace JavaScriptEncoder with json_encode() · 6cd6d3b3
      Michiel Roos authored
      The JavaScriptEncoder class is used a lot in the TYPO3 backend. It does
      expensive character conversions, character by character.
      
      It would improve performance a lot if we use PHP native json_encode to do
      the encoding for us.
      
      Change-Id: I3cb3bd6d887d49565fda496f9b13852cbeb9dfa1
      Resolves: #54560
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/26545
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Michiel Roos
      Tested-by: Michiel Roos
      Reviewed-by: Marcin Sągol
      Tested-by: Marcin Sągol
      Reviewed-by: Stefan Neufeind
      Tested-by: Stefan Neufeind
      6cd6d3b3
  2. Jan 28, 2014
    • Felix Kopp's avatar
      [TASK] Unify button styles · 1e89ca44
      Felix Kopp authored
      Unifies buttons over the backend:
      
      + <button>
      + <input type="submit">
      + <input type="reset">
      + <a class="t3-button">
      
      Extensions do not need to bring own styling for buttons.
      Also adds padding and margin to input, buttons.
      
      Change-Id: Ie1ab255354a222acfbac9b3260297ff345b6feed
      Resolves: #55319
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/27048
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Marcin Sągol
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      1e89ca44
    • Tim Lochmueller's avatar
      [BUGFIX] Invalid constant in the domain redirect function · 7fe3c5ff
      Tim Lochmueller authored
      There is a "copy-and-paste" mistake in the domain redirect mechanism.
      The function HttpUtility::redirect should call with a valid HTTP
      status code (the const value) and not with the name of the constant.
      
      Resolves: #55350
      Releases: 6.2, 6.1, 6.0, 4.5
      Change-Id: I97f55ac8df1688011198666da1fd322a5c3bd323
      Reviewed-on: https://review.typo3.org/27066
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      7fe3c5ff
    • Felix Kopp's avatar
      [TASK] Remove find file in EXT: lowlevel · c158e24d
      Felix Kopp authored
      Removes the find file function from EXT: lowlevel.
      Find file was only available for admins.
      
      Change-Id: I79cedeeef8e8cea9266c893a2c9bd2ab462be482
      Resolves: #55134
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/26928
      Reviewed-by: Oliver Klee
      Reviewed-by: Ernesto Baschny
      Tested-by: Ernesto Baschny
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      c158e24d
    • Benjamin Mack's avatar
      [BUGFIX] TS Parser: Fix regression when having tabs in TS names · 0935dc55
      Benjamin Mack authored
      With the optimization of the TS parser (see #54856), it is not
      possible to write TypoScript like this anymore:
      
      config {
          baseUrl            = www.mywebsite.com
          tx_realurl_enable    = 1
      }
      The problem is that the TS parser is not allowing tabs
      after the TS object name (baseUrl). The fix strips away
      tabs after the TS object name.
      
      Resolves: #55357
      Releases: 6.2
      Change-Id: I880267c2b512e50d6b9e47f469157ea5fd814180
      Reviewed-on: https://review.typo3.org/27069
      Reviewed-by: Michiel Roos
      Tested-by: Michiel Roos
      Reviewed-by: Wouter Wolters
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      0935dc55
    • Stefan Neufeind's avatar
      [TASK] Upgrade jQuery to 1.11.0 · 3b7ccf42
      Stefan Neufeind authored
      Besides fixes this release features
      "fewer forced layouts" and "lower startup overhead".
      
      Change-Id: I988141ccd356425626f68089f9e65c1b04174c23
      Releases: 6.2
      Resolves: #55367
      Reviewed-on: https://review.typo3.org/27076
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Benjamin Mack
      Tested-by: Benjamin Mack
      3b7ccf42
  3. Jan 27, 2014
    • Felix Kopp's avatar
      [TASK] EXT: lowlevel Configuration labels · ef4d996a
      Felix Kopp authored
      Configuration arrays should be accessed via $GLOBALS.
      Modify labels to include the $GLOBALS keyword.
      
      Change-Id: Iea3255e8ebcbf5bd23400fe4d597ea5eca421025
      Resolves: #55324
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/27055
      Reviewed-by: Marcin Sągol
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      ef4d996a
    • Tim Lochmueller's avatar
      [TASK] Remove strlen calls in the DatabaseConnection · 8c29d5dd
      Tim Lochmueller authored
      Remove the strlen calls in the DatabaseConnection to avoid many
      string length calculations for the small checks in the query
      build process. Replace it with a string cast and not identical
      operator.
      
      Resolves: #55370
      Releases: 6.2
      Change-Id: I0c175671ed51ab3034ffae7c0b812a90218e9f58
      Reviewed-on: https://review.typo3.org/27077
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      8c29d5dd
    • Philipp Gampe's avatar
      [TASK] Change phpunit repository url for travis · a8849381
      Philipp Gampe authored
      Resolves: #55366
      Releases: 6.2, 6.1, 6.0, 4.7, 4.5
      Change-Id: Ia90d7c85f81828bd23275b7fa4017ee74a758ad6
      Reviewed-on: https://review.typo3.org/27074
      Reviewed-by: Ernesto Baschny
      Tested-by: Ernesto Baschny
      a8849381
    • Benjamin Mack's avatar
      [TASK] Make Extbase use cache group "pages" · 1b15a7e2
      Benjamin Mack authored
      As there is the possibility to use grouped caching in
      order to be more flexible, Extbase should not use
      hard-coded cache names for clearing the frontend
      cache (cache_pagesection and cache_pages) but use
      the group, so other caches could be triggered as well.
      
      Releases: 6.2
      Resolves: #55044
      Change-Id: I8077f889fce7561170bffc7f97c1884c698d673c
      Reviewed-on: https://review.typo3.org/26866
      Reviewed-by: Felix Oertel
      Tested-by: Felix Oertel
      1b15a7e2
  4. Jan 25, 2014
    • Xavier Perseguers's avatar
      [BUGFIX] Invalid class name to file path conversion · 29191fba
      Xavier Perseguers authored
      The conversion from a class name such as
      tx_extensionname_domain_model_somename to its corresponding PHP file
      does not take Extbase naming conventions for the file name. This yields
      an wrongly-cased file name which will be validated anyway on case
      insensitive file systems.
      
      This wrong conversion may lead to a PHP fatal error
      Cannot redeclare class VendorName\Extension\Domain\Model\Somename
      
      Fixes: #55256
      Releases: 6.2
      Change-Id: Ibe512945ac01f53844f790bea9f0d0cf58518c54
      Reviewed-on: https://review.typo3.org/26999
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      Reviewed-by: Marcin Sągol
      Reviewed-by: Stefan Neufeind
      Tested-by: Marcin Sągol
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      29191fba
  5. Jan 24, 2014
  6. Jan 23, 2014
    • Tolleiv Nietsch's avatar
      [BUGFIX] Get suggest wizard working with renderMode=checkbox · b427ae10
      Tolleiv Nietsch authored
      In case a select field with renderMode "checkbox" is used together with
      the suggest wizard, clicking the suggestions will not check the
      related item in the list and therefore the wizard isn't useful anyhow
      in that combination.
      
      Fixes: #21924
      Releases: 6.2, 6.1, 6.0
      Change-Id: I5823197e9f6bb3f3d4ffc4032677478bd18d87f3
      Reviewed-on: https://review.typo3.org/18689
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      b427ae10
    • Steffen Ritter's avatar
      [BUGFIX] hasProperty ignores meta data properties · c108a378
      Steffen Ritter authored
      Since the split of sys_file to sys_file_metadata the data
      is stored in different arrays. The hasProperty method of
      AbstractFile is not overriden in File to consider that change.
      
      Resolves: #54012
      Releases: 6.2
      Change-Id: Iab2b55e56795033c77c1e3f2969d927ba71a4ceb
      Reviewed-on: https://review.typo3.org/26688
      Reviewed-by: Alexander Stehlik
      Tested-by: Alexander Stehlik
      Reviewed-by: Frans Saris
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      c108a378
    • Eric Chavaillaz's avatar
      [TASK] Remove t3lib from the example .htaccess file · 21fb92fd
      Eric Chavaillaz authored
      Since removing the t3lib folder in TYPO3 6.2, there is
      no more reason to keep reference to this folder in the
      example .htaccess file.
      
      Resolves: #55265
      Releases: 6.2
      Change-Id: Ic7f2cff96186551b2aa08c9e785f42c4f8612fce
      Reviewed-on: https://review.typo3.org/27017
      Reviewed-by: Henrik Ziegenhain
      Reviewed-by: Oliver Klee
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      21fb92fd
    • Tomita Militaru's avatar
      [BUGFIX] sys_category table not listed in allowed excludefields · 79178f0d
      Tomita Militaru authored
      Enables the security flag ignoreRootLevelRestriction in order
      for the sys_category table to be listed in allowed excludefields.
      
      Resolves: #53201
      Releases: 6.2, 6.1
      Change-Id: If2d1ef7fb7d1af943f2ccc13f643014c20b49974
      Reviewed-on: https://review.typo3.org/25268
      Reviewed-by: Francois Suter
      Tested-by: Francois Suter
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      79178f0d
    • Francois Suter's avatar
      [BUGFIX] Removing single category item not possible · 537cf984
      Francois Suter authored
      The "items" selector in a system categories misses a "size"
      property. It is thus considered by the forms JS to be a single
      select field and all items are removed at once rather
      than the selected one.
      
      Resolves: #53665
      Releases: 6.2, 6.1
      Change-Id: Ice539a42b60a14fd604a9b43ecb4dd48b85d3ae3
      Reviewed-on: https://review.typo3.org/27016
      Reviewed-by: Francois Suter
      Tested-by: Francois Suter
      537cf984
    • Tymoteusz Motylewski's avatar
      [TASK] Fix category collection functional test · 662eb3da
      Tymoteusz Motylewski authored
      Category collection test now extends FunctionalTestCase
      class and is green again.
      
      Resolves: #54914
      Releases: 6.2
      Change-Id: Idc49bcf59b6e2e4ebae5c4f7a232f0b543b6821d
      Reviewed-on: https://review.typo3.org/26756
      Reviewed-by: Oliver Klee
      Reviewed-by: Marc Bastian Heinrichs
      Tested-by: Marc Bastian Heinrichs
      Reviewed-by: Marcin Sągol
      Tested-by: Marcin Sągol
      Reviewed-by: Fabien Udriot
      Reviewed-by: Francois Suter
      Tested-by: Francois Suter
      662eb3da
  7. Jan 22, 2014
    • Felix Kopp's avatar
      [TASK] Simplify Font-Size inheritance (CSS) · 0d0beaf3
      Felix Kopp authored
      Font-sizes are defined in t3skin at various places multiple times.
      In order to reduce complexity font-size & line-height should be
      defined centrally and inherited by containers and elements.
      
      Removes few definitions to unify font-sizes and line-heights.
      Also fixed ExtJS CSS theme.
      
      Change-Id: I6493aca9c2dd0fe36c19a65b1e6076b6a181419a
      Resolves: #52497
      Related: #52501
      Related: #49592
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/24299
      Reviewed-by: Marcin Sągol
      Tested-by: Marcin Sągol
      Reviewed-by: Stefan Neufeind
      Reviewed-by: Ernesto Baschny
      Tested-by: Ernesto Baschny
      0d0beaf3
  8. Jan 21, 2014
    • Peter Niederlag's avatar
      [BUGFIX] Simulate time in TYPO3 admin panel broken · 485ef58f
      Peter Niederlag authored
      * Test typeof TBE_EDITOR == "undefined" in jsfunc.evalfield
      * Thanks to Stefan Neufeind/Markus Klein for adding the Unittest
      
      Resolves: #55093
      Releases: 6.2, 6.1, 6.0
      Change-Id: I2cc8a5ca3dd6251f89618d3615c1457938ff135e
      Reviewed-on: https://review.typo3.org/26895
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      Reviewed-by: Henrik Ziegenhain
      Tested-by: Henrik Ziegenhain
      Reviewed-by: Wouter Wolters
      Reviewed-by: Stefan Neufeind
      Tested-by: Stefan Neufeind
      485ef58f
    • Peter Niederlag's avatar
      [BUGFIX] lineNumber count in Template Analyzer · 5a802c83
      Peter Niederlag authored
      ExtendedTemplateService
      =======================
      * fix/improve ExtentedTemplateService->lineNumberToScript
      * don't prepend additional LF in ExtentedTemplateService->ext_outputTS
      * remove obscure empty line removals in ext_outputTS and ext_formatTS
      
      TemplateAnalyzerModuleFunctionController
      ========================================
      * use local $hierarchyInfo to fetch template titles
      
      Resolves: #54897
      Releases: 6.2
      Change-Id: Ia01a89af49d72ed47bef6430042e260af0de3907
      Reviewed-on: https://review.typo3.org/26747
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      5a802c83
    • Helmut Hummel's avatar
      [BUGFIX] Set absPrefix of GraphicalFunctions to PATH_site · a2a6d91b
      Helmut Hummel authored
      To make GifBuilder and GraphicalFunctions work in
      backend context, it is needed to set the absolute
      path prefix for processed images to document root.
      
      It works in FE context, because the current working
      directory of PHP is document root, but fails in
      BE context, as the CWD can be anything, depending
      on the location of the executing script.
      
      Set absPrefix to PATH_site in FAL crop scale mask
      helper so that the FAL file processing can be used
      in BE context.
      
      Resolves: #51804
      Releases: 6.0, 6.1, 6.2
      Change-Id: I824333dc6f6cff4286d9eefb20c045e5bb207658
      Reviewed-on: https://review.typo3.org/23652
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      a2a6d91b
    • Helmut Hummel's avatar
      Revert "[BUGFIX] Repair f:image VH for Backend" · 0c3084b1
      Helmut Hummel authored
      This change is reverted in favor of a cleaner approach:
      https://review.typo3.org/23652
      
      This reverts commit 2e463036
      
      Change-Id: I0a297b9ae85e0b02ad3753d752abe4f31f260c12
      Reviewed-on: https://review.typo3.org/26975
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      0c3084b1
    • Markus Klein's avatar
      [BUGFIX] RootlineUtility does not consider foreign_sorting · f5e6ed3d
      Markus Klein authored
      Make sure RootlineUtility::enrichWithRelationFields() does take
      the TCA setting foreign_sorting into account when fetching
      foreign data for the rootline cache.
      
      Resolves: #54884
      Releases: 6.2, 6.1
      Change-Id: I6f8323bd5a99f9009820332c220a5637e0930712
      Reviewed-on: https://review.typo3.org/26727
      Reviewed-by: Robert Wildling
      Tested-by: Robert Wildling
      Reviewed-by: Steffen Ritter
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      f5e6ed3d
    • Mathias Brodala's avatar
      [BUGFIX] Duplicated translation entry for clear cache menu pages · 8c12d483
      Mathias Brodala authored
      Remove duplicate translation entry in locallang_core.xlf
      
      Change-Id: Ie550b4a8b9736e397a8ce46d00feb957652d92c0
      Resolves: #55153
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/26966
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      8c12d483
    • Stefano Kowalke's avatar
      [BUGFIX] Class 'TYPO3\CMS\Scheduler\Task\AbstractTask' not found · 17dc1bf1
      Stefano Kowalke authored
      When running UnitTests for UpdateExtensionListTask and the extension
      Scheduler is not loaded will raise an Fatal error because it tries to
      mock TYPO3\CMS\Extensionmanager\Task\UpdateExtensionListTask which
      extends from TYPO3\CMS\Scheduler\Task\AbstractTask.
      
      It is necessary to skip the whole test case because every single test
      creates a new instance of
      \TYPO3\CMS\Extensionmanager\Task\UpdateExtensionListTask().
      
      Releases: 6.2
      Resolves: #55192
      Change-Id: I81e69c57d58078cf00e4f8e47a1e8d5c7d984177
      Reviewed-on: https://review.typo3.org/26954
      Reviewed-by: Wouter Wolters
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      17dc1bf1
    • Georg Ringer's avatar
      [TASK] Rename cache t3lib_l10n to l10n · 083f7086
      Georg Ringer authored
      As t3lib doesn't exist anymore, get rid of this naming schema.
      
      Change-Id: I525db9a511813e1e517c1363e29894b34b80ad48
      Resolves: #55149
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/26934
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      Reviewed-by: Christian Kuhn
      Reviewed-by: Marcin S?gol
      Tested-by: Marcin S?gol
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      083f7086
    • Benjamin Mack's avatar
      [TASK] Move Tidy functionality to a TER ext · f8b812dd
      Benjamin Mack authored
      As discussed in the Core newsgroup, the Tidy functionality
      should be removed from the TYPO3 CMS Core. The checks
      and options are removed, and a NEWS note is added. An
      already released replacement was added to the TER.
      
      As the importance is very low, and the drop-in
      replacement in the TER fits nicely, IMHO there is no need
      for an upgrade wizard, as nothing breaks if the
      functionality is missing.
      Every upgrader should read the NEWS anyway in order
      to know what to do to have the functionality back.
      
      Releases: 6.2
      Resolves: #55190
      Change-Id: I3101b7e09f36cbaa63b6b5d8930f61242e4e2cc6
      Reviewed-on: https://review.typo3.org/26952
      Reviewed-by: Wouter Wolters
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      f8b812dd
  9. Jan 20, 2014
    • Philipp Gampe's avatar
      [TASK] Streamline usage of BackendUtility::getPagesTSconfig() · fb91cb8c
      Philipp Gampe authored
      Avoid calling BackendUtility::getPagesTSconfig() with default or useless
      parameters.
      
      Resolves: #53502
      Releases: 6.2
      Change-Id: I842c33022a00f5633b1ef5a250d143b6a253dde1
      Reviewed-on: https://review.typo3.org/25249
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      Reviewed-by: Benjamin Mack
      Tested-by: Benjamin Mack
      fb91cb8c
    • Georg Ringer's avatar
      [BUGFIX] Improve layout of Install Tool with long lines · 97e53286
      Georg Ringer authored
      There might be situation where very long 'words' (line text without
      spaces) are rendered in System environment check and that leads to some
      visual issues.
      
      As a solution apply a CSS rule to break the text.
      
      Change-Id: Ic096a6a81052f42787cea93a88e05665b50dce5e
      Resolves: #55120
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/26937
      Reviewed-by: Marcin S?gol
      Tested-by: Marcin S?gol
      Reviewed-by: Benjamin Rau
      Tested-by: Benjamin Rau
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      97e53286
    • Markus Klein's avatar
      [BUGFIX] Flow\Utility\Exception missing · 06685fd3
      Markus Klein authored
      This exception is required by PackageManager
      
      Resolves: #55132
      Releases: 6.2
      Change-Id: I80d966d581da78802dffd15c6bf27f50633a2f35
      Reviewed-on: https://review.typo3.org/26925
      Reviewed-by: Oliver Klee
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Philipp Gampe
      Tested-by: Philipp Gampe
      06685fd3
    • Stefan Froemken's avatar
      [BUGFIX] Repair f:image VH for Backend · 2e463036
      Stefan Froemken authored
      ImageMagick command was executed from directory
      typo3/, but output file is relative and starts
      with typo3temp.
      This patch adds absolute path to output file
      when in BE mode.
      
      Resolves: #54886
      Releases: 6.2
      Change-Id: I6216a9bb74b9619c090c1ef70322cb6788a73c92
      Reviewed-on: https://review.typo3.org/26729
      Reviewed-by: Oliver Klee
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      Reviewed-by: Marcin S?gol
      Tested-by: Marcin S?gol
      Reviewed-by: Stefan Neufeind
      Tested-by: Stefan Neufeind
      2e463036
    • Markus Klein's avatar
      [BUGFIX] TCA pages:subtitle is missing eval=trim · bf81f39a
      Markus Klein authored
      The TCA pages misses 'trim' as eval setting for column subtitle.
      The title field and the subtitle field of pages_language_overlay
      already have a trim setting applied.
      
      Releases: 6.2, 6.1, 6.0, 4.7, 4.5
      Resolves: #55113
      Change-Id: Icfa441c0010214e3718ed6923ffd7443ce032f81
      Reviewed-on: https://review.typo3.org/26933
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Marcin S?gol
      Reviewed-by: Oliver Klee
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      bf81f39a
  10. Jan 19, 2014