Skip to content
Snippets Groups Projects
  1. Nov 12, 2011
    • Markus Klein's avatar
      [BUGFIX] Core calls deprecated ADMCMD_preview() · 8d94e305
      Markus Klein authored
      The Core still calls tslib_fe->ADMCMD_preview() in index_ts.php.
      Remove the whole code block, since this has been moved to Tx_Version.
      
      The corresponding function in Tx_Version_Preview is already called in
      the connectToDB hook.
      
      Change-Id: I24152ecd3183a17257eb79a58f5270d0fce3a04d
      Fixes: #31290
      Relates: #27931
      Releases: 4.7, 4.6
      Reviewed-on: http://review.typo3.org/6344
      Reviewed-by: Oliver Klee
      Reviewed-by: Simon Schaufelberger
      Tested-by: Simon Schaufelberger
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      Reviewed-by: Andreas Wolf
      Tested-by: Andreas Wolf
      8d94e305
  2. Nov 11, 2011
    • Francois Suter's avatar
      [BUGFIX][!!!] Slider wizard misuses "max" property · 05ac7b98
      Francois Suter authored
      TYPO3 4.6 introduced a slider wizard for select-type and
      input-type fields. For input-type fields it is possible
      to define a minimum and maximum value for the slider.
      Unfortunately the wizard misuses the "max" TCA property
      for the maximum value, which is normally used for the
      "maxlength" attribute of the input field.
      
      The slider wizard should instead rely on the "range" property,
      which already exists and serves exactly the purpose of defining
      a minimum and maximum value for the field.
      
      Change-Id: I0cf34c78f5109ce244357471a122be0f24f1aeef
      Fixes: #31724
      Releases: 4.7, 4.6
      Reviewed-on: http://review.typo3.org/6618
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      Reviewed-by: Kay Strobach
      Tested-by: Kay Strobach
      Reviewed-by: Stefan Neufeind
      Reviewed-by: Francois Suter
      Tested-by: Francois Suter
      05ac7b98
  3. Nov 07, 2011
    • Michael Stucki's avatar
      [!!!][FEATURE] Remove typo3/index.html (and more) · c860aa01
      Michael Stucki authored
      Remove typo3/index.html which does nothing else than redirecting to
      index.php.
      It uses a meta redirection, which has been deprecated by the W3C:
      http://www.w3.org/TR/WCAG10-HTML-TECHS/#meta-element
      
      If this change will break your setup, make sure to change the
      "DirectoryIndex" setting of your Apache webserver so it looks for files
      named index.php: DirectoryIndex index.php
      
      The patch will also remove other files with a similar functionality:
      - typo3/index.htm
      - typo3/index.html
      - typo3/install/index.htm
      - typo3/install/index.html
      
      It will NOT remove index.html in t3lib/ and some other places, where the
      redirect is rather used as a security feature to avoid directory
      listings on poorly configured servers...
      
      Change-Id: I0097c62213cde9cec056e4a6b864cba9f2e828f6
      Resolves: #31614
      Reviewed-on: http://review.typo3.org/6561
      Tested-by: Philipp Gampe
      Reviewed-by: Christian Kuhn
      Reviewed-by: John Galt
      Tested-by: John Galt
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      c860aa01
  4. Nov 05, 2011
    • Francois Suter's avatar
      [BUGFIX] Log date picker broken · 3f21feaf
      Francois Suter authored
      The date picker in the Admin Tools > Log when selecting a user-defined
      time range is broken. Adapt it to new skinning API for the JS to act
      on it properly again.
      
      Change-Id: I8471eff878015dd2ff078921b6947a3beae8d25f
      Resolves: #31450
      Releases: 4.7, 4.6, 4.5, 4.4
      Reviewed-on: http://review.typo3.org/6560
      Reviewed-by: Francois Suter
      Tested-by: Francois Suter
      3f21feaf
    • Francois Suter's avatar
      [BUGFIX] Disambiguate labels in exclude fields list · bc9050a8
      Francois Suter authored
      When defining access lists for be_groups, all exclude fields are
      listed for selection, ordered alphabetically per table and field
      label. It may happen that some fields have the same label within
      the same table. This causes confusion.
      
      This patch adds the field's name next to its label to avoid
      confusion.
      
      Change-Id: I503c8a2e547c749a8bdcc19d70abe2d2471e6650
      Fixes: #25236
      Releases: 4.7, 4.6, 4.5
      Reviewed-on: http://review.typo3.org/6543
      Reviewed-by: Philipp Gampe
      Tested-by: Philipp Gampe
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      Reviewed-by: Francois Suter
      Tested-by: Francois Suter
      bc9050a8
    • Oliver Hader's avatar
      [BUGFIX] Handling file upload fields is broken · cae3e8e7
      Oliver Hader authored
      The handling of file upload fields in the new system extension
      form was broken and not fully implemented. Fetching the
      contents, type and size of the file is missing. Besides that,
      sending these files via mail was not fully implemented.
      
      Change-Id: I9ad7aa2df1e037f1ac8d50031300af9a030a617c
      Fixes: #31085
      Releases: 4.7, 4.6
      Reviewed-on: http://review.typo3.org/6003
      Reviewed-by: Peter Beernink
      Tested-by: Peter Beernink
      Reviewed-by: Jigal van Hemert
      Tested-by: Jigal van Hemert
      cae3e8e7
  5. Nov 04, 2011
    • Simon Schaufelberger's avatar
      [BUGFIX] Error after hide/show element in list module · af755f8f
      Simon Schaufelberger authored
      Showing or hiding an element with workspace selected will result in
      Error: Could not be edited in offline workspace...
      
      Change-Id: I43ceaf2443dff7c3d666811726353f3b17b81182
      Resolves: #20598
      Releases: 4.7, 4.6, 4,5
      Reviewed-on: http://review.typo3.org/5633
      Reviewed-by: Georg Ringer
      Reviewed-by: Simon Schaufelberger
      Tested-by: Simon Schaufelberger
      Reviewed-by: Francois Suter
      Tested-by: Francois Suter
      af755f8f
  6. Nov 03, 2011
    • Markus Klein's avatar
      [BUGFIX] Options checkboxes are hidden in BE admin user form · 05884206
      Markus Klein authored
      The options field is hidden in the BE user form if the user is admin.
      This is a problem if the admin has assigned groups with db_mounts,
      as the default value for the options is to mount also the group's mounts,
      which is undesired for most instances.
      
      Change-Id: Ia18f6179c0029f6063c0a72b8e4775e6ce120bf5
      Fixes: #30492
      Releases: 4.7, 4.6, 4.5, 4.4
      Reviewed-on: http://review.typo3.org/6401
      Reviewed-by: Francois Suter
      Tested-by: Francois Suter
      Reviewed-by: Thierry Brodard
      Reviewed-by: Steffen Ritter
      Tested-by: Steffen Ritter
      05884206
    • Marcus Krause's avatar
      [BUGFIX] alt_doc.php uses deleted alternative page languages for translations · 7bc236c4
      Marcus Krause authored
      The backend script alt_doc.php even considers deleted
      pages_language_overlay records when determining in which language a
      record can be/is localized.
      
      This patch improves method documentation and applies
      t3lib_BEfunc::deleteClause() on the respective database query.
      
      Change-Id: I2f34cfb888a452136120b9e5d94cf2866b909fb1
      Fixes: #31379
      Releases: 4.3, 4.4, 4.5, 4.6, 4.7
      Reviewed-on: http://review.typo3.org/6386
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      Reviewed-by: Steffen Ritter
      Tested-by: Steffen Ritter
      7bc236c4
    • Benjamin Mack's avatar
      [TASK] deprecate userAuthGroup:inList · 8ad8099e
      Benjamin Mack authored
      The class userAuthGroup has its own "inList"
      functionality that is not really needed,
      as there is an optimized version in t3lib_div
      
      Thus, this function should be deprecated and
      all occurences would be replaced with the
      according calls to t3lib_div::inList.
      
      Change-Id: Ica7566807112589c69d70f311a6ac84da280c0e2
      Resolves: #31068
      Releases: 4.7
      Reviewed-on: http://review.typo3.org/5961
      Reviewed-by: Tolleiv Nietsch
      Tested-by: Tolleiv Nietsch
      Reviewed-by: Oliver Klee
      Reviewed-by: Benjamin Mack
      Tested-by: Benjamin Mack
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      8ad8099e
    • Rens's avatar
      [TASK] Add missing tslib_content_abstract::getContentObject() · 1b3ff844
      Rens authored
      Without this getter method there's no clean way to access the current
      tslib_cObj object from a custom media renderer for example.
      
      Resolves: #30994
      Releases: 4.5, 4.6
      
      Change-Id: I065f2c94c586237963e553fddc4ebbea7d199915
      Reviewed-on: http://review.typo3.org/5890
      Reviewed-by: Oliver Klee
      Reviewed-by: Thierry Brodard
      Reviewed-by: Markus Klein
      Tested-by: Markus Klein
      Reviewed-by: Georg Ringer
      Tested-by: Georg Ringer
      1b3ff844
  7. Nov 02, 2011
  8. Nov 01, 2011
    • Xavier Perseguers's avatar
      [BUGFIX] XLIFF: Invalid handling of overlays for unavailable language · 0de6b562
      Xavier Perseguers authored
      When a language is chosen but does not provide localization files for an
      extension, the localization overlay mechanism fails to detect it and
      provides NULL instead of an array to the array merge method of t3lib_div.
      
      Change-Id: Ibf0aa0feadc16a77e61d515ae0c684bf182cf1a6
      Fixes: #31353
      Releases: 4.6, 4.7
      Reviewed-on: http://review.typo3.org/6384
      Reviewed-by: Thomas Juhnke
      Tested-by: Thomas Juhnke
      Reviewed-by: Jigal van Hemert
      Tested-by: Jigal van Hemert
      0de6b562
  9. Oct 31, 2011
  10. Oct 28, 2011
    • Xavier Perseguers's avatar
      [BUGFIX] Empty text with non-localizable label key · 59888063
      Xavier Perseguers authored
      When method $GLOBALS['TSFE']->sL() is called with a non-localizable
      label key (not starting with "LLL:"), an empty string is returned
      instead of the label key itself.
      
      This is a breaking change with previous versions of TYPO3.
      
      Change-Id: I2847e51fd479d9636ac815c820b2e63cf449d6a7
      Fixes: #31347
      Releases: 4.6, 4.7
      Reviewed-on: http://review.typo3.org/6364
      Reviewed-by: Andreas Wolf
      Tested-by: Andreas Wolf
      59888063
  11. Oct 27, 2011
  12. Oct 26, 2011
  13. Oct 25, 2011
    • Oliver Hader's avatar
      [TASK] Set TYPO3 version to 4.7-dev · 96db7b4f
      Oliver Hader authored
      Change-Id: If0028195ed4a6a51ebe5b507c98eb1251e232326
      Reviewed-on: http://review.typo3.org/6332
      Reviewed-by: Oliver Hader
      Tested-by: Oliver Hader
      96db7b4f
    • TYPO3 v4 Release Team's avatar
      [TASK] Set TYPO3 version to 4.6.1-dev · eeca680c
      TYPO3 v4 Release Team authored
      Change-Id: I49fcdd768a00e1207ad22cd56caac7ece19f2c37
      Reviewed-on: http://review.typo3.org/6330
      Reviewed-by: TYPO3 v4 Release Team
      Tested-by: TYPO3 v4 Release Team
      eeca680c
    • TYPO3 v4 Release Team's avatar
      [RELEASE] Release of TYPO3 4.6.0 · a2b4685b
      TYPO3 v4 Release Team authored
      Change-Id: I80f13bd0b46b6ac37a372dc95eeaa71c286f7c00
      Reviewed-on: http://review.typo3.org/6329
      Reviewed-by: TYPO3 v4 Release Team
      Tested-by: TYPO3 v4 Release Team
      a2b4685b
    • Xavier Perseguers's avatar
      [TASK] Update md5 checksums for system extensions · 187274bf
      Xavier Perseguers authored
      The md5 checksums for all system extensions not integrated as submodule
      should be updated.
      
      Change-Id: Iee20932b1b58feaf02317855de38d191204150df
      Resolves: #30723
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/6321
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      187274bf
    • Xavier Perseguers's avatar
      [BUGFIX] EM: Configuration inlineToWindow does not default to 1 · be66e1c9
      Xavier Perseguers authored
      Default configuration for inlineToWindow is set to 1 in ext_conf_template.txt but
      if localconf.php contains an incomplete definition for $TYPO3_CONF_VARS['EXT']['extConf']['em'],
      it defaults to 0 instead.
      
      Change-Id: I3df433e9f9ddf2b610e6eaad89333f03bba3e231
      Fixes: #31271
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/6318
      Reviewed-by: Steffen Ritter
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      be66e1c9
    • Oliver Hader's avatar
      [TASK] Disable file upload in form wizard · 0b699744
      Oliver Hader authored
      Due to a wrong implementation the file upload feature in the
      form wizard will be disabled for the time being.
      
      Change-Id: Ie434fade3047e8ce24fd94e5c1d4c1347024fac2
      Resolves: #31274
      Related: #31085
      Reviewed-on: http://review.typo3.org/6320
      Reviewed-by: Steffen Ritter
      Reviewed-by: Jigal van Hemert
      Tested-by: Jigal van Hemert
      Tested-by: Steffen Ritter
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      0b699744
    • TYPO3 v4 Release Team's avatar
      [TASK] Raise submodule pointer · b69ba295
      TYPO3 v4 Release Team authored
      Change-Id: I0580ce6e45b5e2bb9110e90475a2ce4f8b1424d1
      Reviewed-on: http://review.typo3.org/6313
      Reviewed-by: TYPO3 v4 Release Team
      Tested-by: TYPO3 v4 Release Team
      b69ba295
    • Xavier Perseguers's avatar
      [TASK] Update NEWS.txt with information from reviewed Release Notes · ebe87717
      Xavier Perseguers authored
      Change-Id: I729000694f9d5f957da955b10fda4d3a0e78d8fd
      Reviewed-on: http://review.typo3.org/6283
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      ebe87717
    • Markus Klein's avatar
      [BUGFIX] NEWS.txt refers to invalid language code · ab2e096a
      Markus Klein authored
      The language code of Austria is not de_AU, but de_AT.
      
      Change-Id: I751df88b1bf6555910360142ed95dc5bc21781a8
      Resolves: #31256
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/6279
      Reviewed-by: Philipp Gampe
      Tested-by: Philipp Gampe
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      ab2e096a
    • Steffen Gebert's avatar
      [TASK] Documentation of compressJs feature · c0383127
      Steffen Gebert authored
      The documentation (NEWS.txt and TypoScript completion) does not
      correctly explain the feature set of config.compressJs.
      
      Instead of the advertised minification (stripping white-spaces), it only
      applies GZIP compression (which then requires compressionLevel to be
      enabled in the Install Tool). This is a difference to
      config.compressCss, which does such a minification.
      
      Additionally, .htaccess lacks hints about the gzip rules, which now also
      apply to the Frontend.
      
      Change-Id: I30929ee70d0ab5fd6db74717889af6104c12e23d
      Resolves: #31251
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/6277
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      Reviewed-by: Philipp Gampe
      Tested-by: Philipp Gampe
      Reviewed-by: Jigal van Hemert
      Tested-by: Jigal van Hemert
      c0383127
    • Steffen Gebert's avatar
      [BUGFIX] Upgrade Wizards appear over and over again · 9e3cc426
      Steffen Gebert authored
      The Upgrade Wizards "Check Compression Level" and
      "Deprecated RTE properties" appear over and over again,
      instead of hiding themselves after one execution.
      
      Change-Id: I4d90abc7c88308b2f75dcc20ae4db52d0d383a10
      Fixes: #31248
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/6273
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      Reviewed-by: Philipp Gampe
      Tested-by: Philipp Gampe
      Reviewed-by: Jigal van Hemert
      Tested-by: Jigal van Hemert
      9e3cc426
    • Oliver Hader's avatar
      [BUGFIX] Internal extension information is not updated properly · fa08e0f4
      Oliver Hader authored
      tx_em_Tools::refreshGlobalExtList() is triggered on installing
      extensions. However the current implementation is wrong (early
      return) and does not consider $TYPO3_CONF_VARS.
      
      This misbehavior also prevents the Introduction Package to
      correctly install accordant cf_* tables of workspaces and
      extbase, since the information in $TYPO3_CONF_VARS is not
      available globally.
      
      Change-Id: I3a1b8ea9d2da40a52d9838ac8b1fe9551b6dfed8
      Fixes: #31246
      Reviewed-on: http://review.typo3.org/6270
      Reviewed-by: Tolleiv Nietsch
      Tested-by: Tolleiv Nietsch
      Reviewed-by: Steffen Gebert
      Tested-by: Steffen Gebert
      fa08e0f4
    • Steffen Ritter's avatar
      [TASK] Implement check for saltedpasswords in reports module · f0805c84
      Steffen Ritter authored
      The reports module should show a warning, if saltedpasswords is
      not installed or not configured correctly.
      
      Change-Id: Icbd31378a05f02f20de5e43a63465c119f72a6d3
      Resolves: #30695
      Releases: 4.6, 4.5
      Reviewed-on: http://review.typo3.org/6275
      Reviewed-by: Helmut Hummel
      Tested-by: Helmut Hummel
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      f0805c84
    • Tolleiv Nietsch's avatar
      [TASK] Raise the number of possible file- and dbmounts from 10 to 25 · 3addb27f
      Tolleiv Nietsch authored
      The limitation of 10 dbmounts and filemounts does not work in each
      installation. Due to the fact that removing the limits completely would
      most likely waste quite some space in most installations, we agreed to
      have equal limits everywhere and raise the limits to 25.
      
      Change-Id: I60f84b5b9e03661c19840ec711533be207966ae3
      Fixes: #30926
      Releases: 4.6
      Reviewed-on: http://review.typo3.org/6271
      Reviewed-by: Steffen Gebert
      Tested-by: Steffen Gebert
      3addb27f
    • Juergen Kussmann's avatar
      [BUGFIX] Incorrect display of Flexform UTF8 labels · c5e7ebdc
      Juergen Kussmann authored
      UTF8 labels and options are displayed incorrectly in Flexforms.
      
      Change-Id: I857bd26b8d1ee27b823e27ce5f67298f5549dc70
      Resolves: #28952, #29067
      Releases: 4.6, 4.5
      Reviewed-on: http://review.typo3.org/6208
      Reviewed-by: Tolleiv Nietsch
      Tested-by: Tolleiv Nietsch
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      c5e7ebdc
    • Oliver Hader's avatar
      [BUGFIX] Caching tables of new extensions are not created · 73dd5ead
      Oliver Hader authored
      Creating the caching tables of an extension that has been installed in
      the same process does not work. Since the cachingConfiguration of the
      new extension is not forwarded to the cache manager, the new tables
      are just not known there.
      
      Change-Id: I0e72cffc43165be30bde6e7f3ec2c19c1f668bb2
      Fixes: #31249
      Reviewed-on: http://review.typo3.org/6274
      Reviewed-by: Christian Kuhn
      Tested-by: Christian Kuhn
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      73dd5ead
    • Helmut Hummel's avatar
      [BUGFIX] Check if OpenSSL works on every platform · d41d7a6e
      Helmut Hummel authored
      The php backend in rsaauth checks if key generation works on Windows platforms. 
      Since there also could be *nix platforms with a wrong OpenSSL configuration, 
      we should remove this limitation and check if key generation works in any case.
      
      Change-Id: Id075445f1fbf9bd37ca44525257892052a94c6e5
      Resolves: #31188
      Releases: 4.6, 4.5, 4.4, 4.3
      Reviewed-on: http://review.typo3.org/6192
      Reviewed-by: Oliver Klee
      Reviewed-by: Xavier Perseguers
      Reviewed-by: Steffen Gebert
      Tested-by: Steffen Gebert
      Reviewed-by: Steffen Ritter
      Tested-by: Steffen Ritter
      Reviewed-by: Oliver Hader
      d41d7a6e
    • Christian Kuhn's avatar
      [BUGFIX] Install tool throws database errors in upgrade wizard · cc0643f2
      Christian Kuhn authored
      Some upgrade wizards like addflexformstoacl need working cache tables.
      Those might not exist already. The patch forces creation of those tables
      if calling the upgrade wizard.
      
      Change-Id: I5d831bb819389cd2bf90854bb300408b4e6ed823
      Resolves: #30862
      Reviewed-on: http://review.typo3.org/6262
      Reviewed-by: Susanne Moog
      Tested-by: Susanne Moog
      Reviewed-by: Oliver Hader
      Reviewed-by: Wouter Wolters
      Reviewed-by: Tolleiv Nietsch
      Tested-by: Tolleiv Nietsch
      cc0643f2
  14. Oct 24, 2011
    • Björn Pedersen's avatar
      [BUGFIX] Extension details are difficult to read · 26ec5aca
      Björn Pedersen authored
      The problem: The label column is just 100 px wide,
      causing linebreaks in the label.
      This can result in incorrect reading, e.g. :
      
      Loaded  		yes
      in Frontend:
      
      The correct reading is: Loaded in frontend: yes.
      
      Setting .em-extlist-extinfo label, .em-info label { width:200px;}
      makes it easier readable again.
      Resolves: #30596
      Releases: 4.6
      
      Change-Id: I2317dde021b363783562b1e749028c68db369c42
      Reviewed-on: http://review.typo3.org/6034
      Reviewed-by: Xavier Perseguers
      Tested-by: Xavier Perseguers
      Reviewed-by: Wouter Wolters
      Tested-by: Wouter Wolters
      Reviewed-by: Stefan Galinski
      Tested-by: Stefan Galinski
      26ec5aca