Skip to content
Snippets Groups Projects
  1. Feb 11, 2014
    • Helge Funk's avatar
      [BUGFIX] Avoid fatal error if adding composer package · 73489abe
      Helge Funk authored
      Adding composer packages to „Packages“ folder will cause a fatal error
      This fix prevents the extension manager from handling not legacy packages
      
      Resolves: #55754
      Releases: 6.2
      Change-Id: I3ac491c8566b14578f5d3a604c63dffc1310d042
      Reviewed-on: https://review.typo3.org/27402
      Reviewed-by: Thomas Maroschik
      Reviewed-by: Marcin Sągol
      Tested-by: Thomas Maroschik
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      73489abe
    • Helmut Hummel's avatar
      [BUGFIX] Allow multiple aliases for a class · 112a1119
      Helmut Hummel authored
      When working on #55559 (refactoring class alias handling)
      accidentally code was introduced to avoid more than
      one alias for a class name.
      Remove this code to make multiple aliases work again.
      
      Fixes: #55897
      Releases: 6.2
      Change-Id: I8b4b721c57c52d117130947fe92c564d6ddcdd9b
      Reviewed-on: https://review.typo3.org/27558
      Reviewed-by: Claus Due
      Tested-by: Claus Due
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      112a1119
    • Thomas Maroschik's avatar
      [BUGFIX] Fix fatal errors upon package installation · 17751954
      Thomas Maroschik authored
      During the installation of packages via the extension
      manager a fatal error can occur when the ext_localconf
      and ext_tables are loaded and use classes from their own
      package. This happens because the package is activated
      but the class loader is not aware yet of the new package.
      
      This patch adds the extension temporarily to the runtime
      activated packages in the class loader.
      
      Fixes: #53795
      Releases: 6.2
      Change-Id: I195b86284b9a288f4d7c102168ec18ed8683cb07
      Reviewed-on: https://review.typo3.org/27544
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      17751954
    • Alexander Stehlik's avatar
      [BUGFIX] Prevent double slash in isWithin check · 5d51daea
      Alexander Stehlik authored
      If the root folder is used as folder identifier (/) no slash is appended
      so that isFirstPartOfStr works correctly in the isWithin check in
      LocalDriver.
      
      Resolves: #55740
      Releases: 6.2
      Change-Id: I2af1cd3759656502ea84887828dfb222f0a07b64
      Reviewed-on: https://review.typo3.org/27379
      Reviewed-by: Markus Klein
      Reviewed-by: Markus Kasten
      Reviewed-by: Steffen Ritter
      Tested-by: Steffen Ritter
      5d51daea
    • Thomas Maroschik's avatar
      [BUGFIX] Replace the table definition manipulation by signals · 2cdbc43f
      Thomas Maroschik authored
      During installation of extensions the Extension Manager does
      not take the Category API into account. The code to do so is
      present in the Install Tool in the Database Compare Tool. It is
      cumbersome to switch to the install tool to update the database
      in order to use the category fields. The install tool and extension
      manager currently need to know which components manipulate
      the table definitions and this is bad coupling of components
      which shouldn't know each other.
      
      This fix replaces the individual calls to the components by two
      signals and thus a generic approach.
      
      Fixes: #53016
      Releases: 6.2
      Change-Id: I7f99ad7cadc323d4f8b975de97e4c665a82647a5
      Reviewed-on: https://review.typo3.org/26506
      Reviewed-by: Fabien Udriot
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      2cdbc43f
    • Helmut Hummel's avatar
      [TASK] Speedup travis build · 8e2dc707
      Helmut Hummel authored
      Different build environments have been set up
      mainly to be able to execute lint, unit tests
      and functional tests in parallel. However
      setting up the build environment on travis
      also takes quite some time, so that overall
      build times are quite high.
      
      This change cleans up the travis configuration,
      reduces the number of builds to only the configured
      PHP versions and executes lint, unit tests and
      functional test in parallel using the command line
      tool "parallel"
      
      By doing so, the overall build time can be reduced
      by at least 50%
      
      This change also removes the installation of a
      current git version which has been added to
      fix temporary Travis service errors.
      
      Releases: 6.2
      Change-Id: Ic1591ed0b596df22a648a825639c1a2bbc7ffcc2
      Reviewed-on: https://review.typo3.org/27540
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      8e2dc707
    • Frans Saris's avatar
      [BUGFIX] Wrong check removes FE cookie · 00c895c0
      Frans Saris authored
      Issue #55549 added a wrong check for user uid.
      As result the FE cookie gets deleted when you are
      loggedin instead when your not.
      
      This change inverses the check.
      
      Resolves: #55845
      Releases: 6.2
      Change-Id: I0c59afb8c89e9f7887970eaf0a4079fe98280b2c
      Reviewed-on: https://review.typo3.org/27525
      Reviewed-by: Wouter Wolters
      Reviewed-by: Markus Klein
      Reviewed-by: Marcin Sągol
      Reviewed-by: Benjamin Mack
      Tested-by: Benjamin Mack
      00c895c0
  2. Feb 10, 2014
    • Jan Kiesewetter's avatar
      [FEATURE] Fallback/default case for SwitchViewhelper · 3f6b1cd0
      Jan Kiesewetter authored
      In order to provide the full functionality known from the
      switch/case PHP function, a default case possibility is
      introduced. Use it like:
      <f:switch expression="{person.gender}">
        <f:case value="female">Mrs.</f:case>
        <f:case value="male">Mr.</f:case>
        <f:case default="TRUE">Mrs. or Mr.</f:case>
      </f:switch>
      
      Change-Id: Ib9468cdabd66fb8b484cb4d07520d5b529548dd1
      Resolves: #49371
      Documentation: #54283
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/26058
      Reviewed-by: Benjamin Kott
      Tested-by: Benjamin Kott
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      3f6b1cd0
    • Alexander Stehlik's avatar
      [BUGFIX] Fix behavior of revExplode if delimiter not found · dda0354d
      Alexander Stehlik authored
      If the given delimiter is not found in the given string
      GeneralUtility::revExplode() will return an array with a single element
      containing the unexploded string.
      
      Resolves: #55838
      Releases: 6.2
      Change-Id: I1146552a625a8057be86b2745febf808638a290c
      Reviewed-on: https://review.typo3.org/27524
      Reviewed-by: Andreas Wolf
      Tested-by: Andreas Wolf
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      dda0354d
    • Christian Kuhn's avatar
      [TASK] Reduce memory footprint of unit tests · 2d05837d
      Christian Kuhn authored
      Running the whole unit test suite on cli can eat up a significant
      amount of memory. Most of that can not be mitigated due to phpunit
      itself, but we can at least hint the PHP garbage collection by
      unsetting test class properties in tearDown().
      
      The patch introduces a generic tearDown() method that reflects the
      test class and unsets all temporary properties of the class. In
      effect, tests do not need to take care of unsetting properties.
      
      The patch removes all tearDown() methods that only unset() stuff
      and keeps others that do additional things but adds a call to
      parent::tearDown(). Private properties are changed to protected,
      so parent::tearDown can reach them. The additional computing
      effort of the reflection is insignificant, the suite is nearly as
      fast as before.
      
      Results:
      php 5.3: 1056MB -> 851MB
      php 5.4: 870MB -> 670MB
      php 5.5.: 876MB -> 674MB
      
      Resolves: #55850
      Related: #51436
      Releases: 6.2
      Change-Id: Ie665c53a3ab35e4808677e483d2099e0511c393f
      Reviewed-on: https://review.typo3.org/27528
      Reviewed-by: Helmut Hummel
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      2d05837d
    • Helmut Hummel's avatar
      [TASK] Execute functional tests and lint in parallel · 41a4f981
      Helmut Hummel authored
      Change-Id: Icab8cd1d7f4b9a56f10ed7fc1f6e945ff50b295c
      Reviewed-on: https://review.typo3.org/27529
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      41a4f981
    • Christian Kuhn's avatar
      [TASK] Tests: Remove backup of TYPO3_DB · 03d4a807
      Christian Kuhn authored
      All $GLOBALS are backed up by phpunit, no explicit backup
      of $GLOBALS['TYPO3_DB'] is required.
      
      Change-Id: I2859a5922d85a23fa8281382b1d78043ec7bd934
      Resolves: #55846
      Related: #51436
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/27526
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      03d4a807
    • Andreas Wolf's avatar
      [TASK] Centralize DB queries · 556e72f4
      Andreas Wolf authored
      In order to be able to easier debug stuff and intercept database calls,
      all queries are made through a central ``query()`` method in
      ``DatabaseConnection``.
      
      Change-Id: I53cd98dbb837232765bcc24e30851f99d3cfdca0
      Resolves: #55769
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/27420
      Reviewed-by: Stefan Neufeind
      Reviewed-by: Pascal Dürsteler
      Tested-by: Pascal Dürsteler
      Reviewed-by: Oliver Klee
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      556e72f4
    • Ernesto Baschny's avatar
      [BUGFIX] Regression: jumpUrl_transferSession throws hash exception · 13dd41be
      Ernesto Baschny authored
      jumpUrl_transferSession adds some more parameters
      to the URL, making the juHash invalid.
      Simply add the check for the allowed redirection
      before the jumpurl is internally modified.
      
      Resolves: #46463
      Releases: 6.2, 6.1, 6.0, 4.7, 4.5
      Change-Id: I53fad094caca37b476e07cae953105623e038e85
      Reviewed-on: https://review.typo3.org/19270
      Reviewed-by: Helmut Hummel
      Reviewed-by: Alexander Stehlik
      Tested-by: Alexander Stehlik
      Reviewed-by: Wouter Wolters
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      Reviewed-by: Stefan Neufeind
      Reviewed-by: Marcin Sągol
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      13dd41be
    • Anja Leichsenring's avatar
      [TASK] Cleanup ext:frontend web_info module routing · c4be1a47
      Anja Leichsenring authored
      The function menu of info module API method can create
      proper link targets without mentioning index.php. The
      patch is a preparation for switching the entry point
      of info module to mod.php.
      
      Change-Id: I467e99ff50513033f887049e5b4a487f0ade645b
      Resolves: #55797
      Relates: #55672
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/27482
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      c4be1a47
    • Michiel Roos's avatar
      [TASK] Use stat() instead of filemtime + filesize · c025cc90
      Michiel Roos authored
      Calling stat() is cheaper than calling filemtime() AND filesize().
      
      Change-Id: I8fc3cb46d934b3c49f6919f7f178e2b232fd62e1
      Resolves: #55574
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/27256
      Reviewed-by: Marcin Sągol
      Reviewed-by: Karol Lamparski
      Reviewed-by: Michał Jankiewicz
      Reviewed-by: Stefan Neufeind
      Reviewed-by: Michiel Roos
      Tested-by: Michiel Roos
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      c025cc90
    • Łukas Jurys's avatar
      [BUGFIX] Strict Standards - setLanguageKeys must be static · fba4b679
      Łukas Jurys authored
      protected LocalizationUtility::setLanguageKeys() is only
      called from static initializeLocalization and needs to
      be static, too.
      
      Resolves: #47983
      Releases: 6.2
      Change-Id: I7d0a4f5e8fc09ee049a6a7af1be65d5d5e8bf5e4
      Reviewed-on: https://review.typo3.org/27506
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      Reviewed-by: Oliver Klee
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      fba4b679
    • Felix Kopp's avatar
      [TASK] Unify UL/OL standard · 49b0696c
      Felix Kopp authored
      Bring standard styles for UL/OL html elements. Ordered
      and unordered lists are styled with disc bullet and decimal.
      
      Also overrides those new standard definition for non
      standard "lists" like tabs or trees.
      
      Resolves: #55819
      Releases: 6.2
      Change-Id: I6f4317d46d503f6d5737015710d19d9c2361b14c
      Reviewed-on: https://review.typo3.org/27517
      Reviewed-by: Marcin Sągol
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      49b0696c
    • Anja Leichsenring's avatar
      [TASK] Cleanup ext:indexed_search web_info module routing · d8466034
      Anja Leichsenring authored
      The function menu of info module API method can create
      proper link targets without mentioning index.php. The
      patch is a preparation for switching the entry point
      of info module to mod.php.
      
      Resolves: #55796
      Relates: #55672
      Change-Id: Ida807864ea8d75a2737313c88d8f89b37bb816b6
      Reviewed-on: https://review.typo3.org/27479
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      d8466034
    • Georg Ringer's avatar
      [TASK] Fix typos all over the core · 96d7220d
      Georg Ringer authored
      Change-Id: I40990623e3d53e70666438acafc27275ac36b621
      Resolves: #55827
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/27523
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      96d7220d
  3. Feb 09, 2014
    • Oliver Klee's avatar
      [BUGFIX] "else if" in GeneralUtility breaks the build · 49627407
      Oliver Klee authored
      Resolves: #55822
      Releases: 6.2
      Change-Id: I32dd5119a3580df3990997d1c812f33c062c39ba
      Reviewed-on: https://review.typo3.org/27521
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      49627407
    • Łukas Jurys's avatar
      [BUGFIX] Use PHP native htmlspecialchars_decode() · 0e3c49f4
      Łukas Jurys authored
      Method Generalutility::htmlspecialchars_decode()
      was replaced by htmlspecialchars_decode().
      Also  Generalutility::htmlspecialchars_decode()
      has been marked as deprecated
      
      Resolves: #54777
      Releases: 6.2
      Change-Id: Idc9b12d8a1dc2746ee0f742c37c640118c9f69c3
      Reviewed-on: https://review.typo3.org/27473
      Reviewed-by: Oliver Klee
      Reviewed-by: Karol Lamparski
      Reviewed-by: Marcin Sągol
      Tested-by: Marcin Sągol
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      0e3c49f4
    • Stefan Neufeind's avatar
      [BUGFIX] Fix CSS-path to default .t3-icon image · 3a58565b
      Stefan Neufeind authored
      There is no such icon in
      typo3/sysext/backend/Resources/Public/gfx/
      
      Usually the default-icon is overwritten in CSS
      anyhow by specifying the icon to use, so the
      bug does not show. But the path is still wrong.
      
      Change-Id: Ie321cecfb888664a3ec782933e72cfa89e6f41ec
      Resolves: #55799
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/27494
      Tested-by: Stefan Neufeind
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      3a58565b
    • Christian Kuhn's avatar
      [BUGFIX] Tests: Remove unstable GeneralUtilityTest::getUrl* · 7e97004c
      Christian Kuhn authored
      Two tests check getUrl() by calling some resource on typo3.org.
      This smells funny and the tests are unstable if network, dns
      or typo3.org is down or slow. Mocking is not easily possible
      with the lowlevel nature of getUrl().
      The tests are removed for now.
      
      Change-Id: I85a83345404c833a67c2f532e820fd28bb7c08e7
      Resolves: #55821
      Releases: 6.2, 6.1, 6.0
      Reviewed-on: https://review.typo3.org/27518
      Reviewed-by: Stefan Neufeind
      Tested-by: Stefan Neufeind
      7e97004c
    • Jigal van Hemert's avatar
      [BUGFIX] improve handling of TYPO3 version · e9f80cbd
      Jigal van Hemert authored
      getNumericTypo3Version() needs to be more flexible when converting
      the defined version number into one that can be used by the EM.
      
      Resolves: #23902
      Releases: 6.2
      Change-Id: Ie2ed54c1383e3c6ff9631608e2e9e471ef109952
      Reviewed-on: https://review.typo3.org/27509
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      e9f80cbd
    • Przemysław Krukowski's avatar
      [BUGFIX] Duplicate exception code · de63e404
      Przemysław Krukowski authored
      Exception codes are unique now.
      
      Resolves: #52294
      Releases: 6.2
      Change-Id: I4ad49b1ff0342ea36147b6ba0b01d270d9d9f3c5
      Reviewed-on: https://review.typo3.org/27462
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      de63e404
    • Andreas Wolf's avatar
      [TASK] Improve revExplode performance · 7da40c0b
      Andreas Wolf authored
      ``GeneralUtility::revExplode()`` is implemented in a very
      performance-intensive way: it always does a complete cycle with multiple
      array operations, be it necessary or not.
      
      To make the method more performant, it is split into different cases.
      Currently, the only used value for the ``$count`` in the core is 2, but
      we have to implement all others, too, of course. The performance
      increase for $count=2 is greater than 50%; the others will at maximum be
      as bad as the old implementation, plus a very tiny overhead for checking
      the value of ``$count``.
      
      Change-Id: I79d9a87b790935415c636ee87e6a6db952e0baa4
      Resolves: #55564
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/27255
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      7da40c0b
    • Felix Kopp's avatar
      [TASK] file_list: use t3-table & semantic HTML in localization · 3127efc2
      Felix Kopp authored
      Brings the central table mark-up and style definition "t3-table"
      to file_list backend module. Thanks to the unification few lines
      of duplicated css definitions can be tossed.
      
      Also moves the localization icons into the html table row. This
      is a semantic clean-up and gives every file entry one table row.
      -> Buttons can be added to title cell since cell is always visible.
      
      Note: RequireJS module is moved to EXT: file_list.
      
      By hiding the flag icons from within html right away there
      is no flashing between render & ready (JS hide()).
      
      Change-Id: Ic84450b8327c9533037ea21054799d6ad9d8d74b
      Resolves: #55810
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/27512
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      3127efc2
    • Christian Kuhn's avatar
      [TASK] Remove old class files from ext:openid · c5741aa9
      Christian Kuhn authored
      Removes old class files from ext:openid except the two
      current entry points for _eid and _return.
      
      Change-Id: Ibdeca07881aad92af28c9f0e81c42a4ee1b600c2
      Resolves: #55808
      Related: #47756
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/27507
      Reviewed-by: Oliver Klee
      Reviewed-by: Marcin Sągol
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      c5741aa9
    • Michiel Roos's avatar
      [TASK] Add unit tests for getFilesInDir() · e7c4ac83
      Michiel Roos authored
      Change-Id: I740b4f481f05ac7bb32028739d534dbb1c41864c
      Resolves: #55762
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/27410
      Tested-by: Oliver Klee
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      e7c4ac83
    • Markus Klein's avatar
      [BUGFIX] Allow to render the same TS object twice · 1b9d3a59
      Markus Klein authored
      CONTENT/RECORDS elements prevent to render the same object twice.
      
      Resolves: #53768
      Resolves: #28745
      Releases: 6.2, 6.1, 6.0
      Change-Id: I30750f2dc848521999c3734129439d7f6f90aae1
      Reviewed-on: https://review.typo3.org/25512
      Reviewed-by: Stefan Neufeind
      Tested-by: Stefan Neufeind
      Reviewed-by: Stefano Kowalke
      Reviewed-by: Andreas Wolf
      Tested-by: Andreas Wolf
      1b9d3a59
    • Christian Kuhn's avatar
      [TASK] Remove old class files from ext:recycler · 5b802d68
      Christian Kuhn authored
      Change-Id: I5d2233c5eb0860740e1858bf2f96a919fee26e5e
      Resolves: #55804
      Related: #47756
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/27505
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Oliver Klee
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      5b802d68
  4. Feb 08, 2014
    • Felix Kopp's avatar
      [!!!][TASK] Set f:format.date format to system default · bb92edbb
      Felix Kopp authored
      TYPO3 configuration knows a global date format configuration
      within the installation tool. See TYPO3_CONF_VARS/SYS/ddmmyy.
      
      Use this global format as the default for all fluid based date
      format outputs if not overwritten in place.
      
      Change-Id: I508d7f61f63760aa1301f52663c432feeb539bf4
      Resolves: #55790
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/27456
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      Reviewed-by: Marcin Sągol
      Tested-by: Marcin Sągol
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      bb92edbb
    • Łukas Jurys's avatar
      [BUGFIX] Type safe check for $BE_USER in index_ts.php · cf94a271
      Łukas Jurys authored
      Resolves: #41593
      Releases: 6.2
      Change-Id: I3863789ad2489055169f3f008cb4dac0085fde82
      Reviewed-on: https://review.typo3.org/27463
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      Reviewed-by: Marcin Sągol
      Reviewed-by: Michał Jankiewicz
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      cf94a271
    • Tymoteusz Motylewski's avatar
      [TASK] Remove duplicated method in Rtehtmlarea\SelectImage · 162ead51
      Tymoteusz Motylewski authored
      fileList() of Rtehtmlarea\SelectImage is almost an exact copy
      of the parent implementation from ElementBrowser.
      
      The patch removes fileList() from SelectImage and merges changes
      to ElementBrowser.
      
      It also fixes some bugs in magic image selector from RTE:
      * Missing columns
      * Wrong links to info page
      * Fix "import selection" option
      
      Resolves: #55765
      Releases: 6.2
      Change-Id: I78cb23de16b9516f953628aad10cf548f558bfd7
      Reviewed-on: https://review.typo3.org/27414
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      Reviewed-by: Marcin Sągol
      Tested-by: Marcin Sągol
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      162ead51
    • Wouter Wolters's avatar
      [BUGFIX] CSV-Download not working in IE and HTTPS backend · 8c699f8c
      Wouter Wolters authored
      When using a HTTPS backend the download of CSV is not
      working in Internet Explorer browser versions lower then 9.
      Add the needed header to fix this problem.
      
      Change-Id: Iefa63fb37d57491fb73bfd504b6caed5b76c8cac
      Resolves: #16491
      Releases: 6.2, 6.1, 6.0, 4.7, 4.5
      Reviewed-on: https://review.typo3.org/20902
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      8c699f8c
    • Felix Kopp's avatar
      [TASK] "t3-table" (Web>List) & tree sprites (AbstractTreeView) · ca702ff6
      Felix Kopp authored
      Brings tree-level icons based on sprite icons utility for treeviews
      and abstract tree view (e.g. Web>Info Localization, Web>Perm).
      
      Refactors the Web>Perm permission matrix table and edit
      view. Both are now based on table.t3-table unified CSS.
      
      All individual CSS styles for Web>Perm are obsolete now
      since only standard core styles are necessary and used.
      
      Change-Id: Icd8bcc476891bc44107acfbe1b81bafd6fd4e3c0
      Resolves: #55784
      Related: #45502
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/27438
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      ca702ff6
    • Peter Niederlag's avatar
      [BUGFIX] Spelling of namespace \TYPO3\CMS\Tstemplate · 9a492b17
      Peter Niederlag authored
      In some places a wrong namespace \TYPO3\CMS\TsTemplate was used.
      \TYPO3\CMS\Tstemplate is the correct namespace for the tstemplate
      sysext.
      
      This fixes a problem in links between TSOB and Template Analyzer.
      
      Resolves: #55764
      Releases: 6.2
      Change-Id: Iad84baa842b68f18468c1ff6b92c75c09710815e
      Reviewed-on: https://review.typo3.org/27415
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      9a492b17
    • Christian Kuhn's avatar
      [TASK] Remove old class files from ext:t3editor · 682d1a04
      Christian Kuhn authored
      Change-Id: Id7cd8fdaecf663462b8d02a4bf2ca272293cea4f
      Resolves: #55792
      Related: #47756
      Releases: 6.2
      Reviewed-on: https://review.typo3.org/27460
      Reviewed-by: Marcin Sągol
      Reviewed-by: Anja Leichsenring
      Tested-by: Anja Leichsenring
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      682d1a04
    • Marcin Sągol's avatar
      [BUGFIX] Wrong colspan in DatabaseRecordList · ead5c5d3
      Marcin Sągol authored
      If the List Module is in extended view, the colspan of the footer
      is wrong if there are more than 20 records of a type.
      
      Fix this by increasing the colspan with one if the List Module is
      extended view.
      
      Resolves: #55443
      Releases: 6.2
      Change-Id: I4c9a45cdab3d1c5267566663fbb6c7cbb702f32a
      Reviewed-on: https://review.typo3.org/27448
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      ead5c5d3