- May 18, 2015
-
-
Benjamin Kott authored
A problem with the autofocus chain and the autofocus attribute, prevented users on IE10+ to enter their login credentials for backend access directly after initial load. Releases: master Resolves: #67024 Change-Id: I21af4156345f610433d3f4f8d02aa1804dae2f2b Reviewed-on: http://review.typo3.org/39604 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de>
-
Markus Klein authored
Resolves: #67013 Releases: master, 6.2 Change-Id: Ifaf0a3125ac6b5c0f9e13c2f5c3d4db94aa43ea9 Reviewed-on: http://review.typo3.org/39600 Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Stephan Großberndt <stephan@grossberndt.de> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-
Wouter Wolters authored
This patch resolves it for all FormEngine related classes. Resolves: #66635 Releases: master Change-Id: I436e8990aa3c003dd5005937a429168825b56fb5 Reviewed-on: http://review.typo3.org/39037 Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Markus Klein authored
Reset session data timestamp when removing session data in order to assure that new session data are stored via INSERT later again. Resolves: #67007 Releases: master, 6.2 Change-Id: I181017687f9569d4e2a16ca3a970367b05cf7d52 Reviewed-on: http://review.typo3.org/39597 Reviewed-by:
Johann Carstens <johann.carstens@conlabz.de> Tested-by:
Johann Carstens <johann.carstens@conlabz.de> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de>
-
Christian Kuhn authored
Small follow up to fix some mostly cosmetical issues. Resolves: #67006 Releases: master Change-Id: Ie9ffab0e5bce9e8c97d87a6ff4c213e788cd1bf7 Reviewed-on: http://review.typo3.org/39598 Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de>
-
Christian Kuhn authored
Creation of container and elements instances in the FormEngine is hard coded and hard to overwrite or adapt. The patch extends the existing NodeFactory with resolver code to find an appropriate class for a given requested type. All FormEngine internal container and element requests are now routed through NodeFactory. This allows to loosen the strict dependency between TCA config "type" to an implementing class by moving the resolving code into the factory. This is done for SelectElement which is now split into multiple smaller classes - one for each display type. The NodeFactory is covered by unit tests since the resolving code will become more complex and fine grained in the future. As a side effect the patch resolves a hack in the FormDataTraverser which no longer calls internal stuff of the select element. The NodeFactory is prepared to be extended with an API for extensions to steer and overwrite default implementations. This will be added with a next patch. Change-Id: I2253a0fe3240366d0d271a3cd82119ce3dc52012 Resolves: #67006 Releases: master Reviewed-on: http://review.typo3.org/39517 Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
- May 17, 2015
-
-
Andreas Allacher authored
If one uses TypoScript condition with GP then the check is with GeneralUtility::_GP() which will means that if I have GET variables beginning with an extbase plugin-namespace and POST variables with the same plugin-namespace, e.g. GET: tx_demo_demo[action]=detail POST: tx_demo_demo[name]=Foo then GeneralUtility::_GP('tx_demo_demo'), as intended, will only return the array of the POST variables for that namespace. However, that results in the issue that if I check for the GET variable the check will fail. So for such cases there is a new TypoScript condition GPmerged which uses GeneralUtility::_GPmerged() Change-Id: I772c1c1d178b10e9293132bc41bfc36fabd53063 Resolves: #65250 Releases: master Reviewed-on: http://review.typo3.org/37157 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Michael Oehlhof <typo3@oehlhof.de> Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net>
-
Benjamin Kott authored
Releases: master Resolves: #66999 Change-Id: I3f2d9ff945021ac0a6f9aac79033ff05c0f55db4 Reviewed-on: http://review.typo3.org/39588 Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de> Reviewed-by:
Philipp Gampe <philipp.gampe@typo3.org> Tested-by:
Philipp Gampe <philipp.gampe@typo3.org>
-
Andreas Fernandez authored
The slider object bound to "renderTooltipValue" does not contain the configuration set in the DOM by data attributes. Get the element containing these attributes and us this instead. Resolves: #66991 Releases: master Change-Id: Ib8df38bc84cf9848b55995619d952b300dec0540 Reviewed-on: http://review.typo3.org/39586 Reviewed-by:
Benjamin Kott <info@bk2k.info> Tested-by:
Benjamin Kott <info@bk2k.info> Reviewed-by:
Philipp Gampe <philipp.gampe@typo3.org> Tested-by:
Philipp Gampe <philipp.gampe@typo3.org>
-
- May 16, 2015
-
-
Jo Hasenau authored
Rule of thumb should be to use GeneralUtility::inList() for single checks of lists with unknown values only. Within loops it will be faster to explode the list outside the loop, then flip the array and finally use isset on the array keys within the loop. Hardcoded lists might be replaced with arrays as well. See the issue on forge for a description and some benchmarks. This will not fully resolve the issue since there will be more patches to come, since we should avoid monster patches to minimize the risk of regressions. Releases: master Resolves: #55626 Change-Id: I5a0d8ea6f71a4f8fd39587c5ec3bfcb557d4c777 Reviewed-on: http://review.typo3.org/37138 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Tested-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-
Wouter Wolters authored
Resolves: #66991 Releases: master Change-Id: Ib78eab523fb6ecdba415bf4b07e15690794c2da1 Reviewed-on: http://review.typo3.org/38516 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net>
-
Wouter Wolters authored
* use strict checks * shorten namespaces * remove count() were possible Resolves: #65731 Releases: master Change-Id: I297679d373669b5b75ffaae5111c400f69ac922a Reviewed-on: http://review.typo3.org/37800 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net>
-
Andreas Fernandez authored
If autoscroll is either disabled or content is written into an inactive tab, stay at the scroll position of the affected tab. Resolves: #66992 Releases: master Change-Id: I8a3a16fe703a76ea3a66a31195b05e06e83b8987 Reviewed-on: http://review.typo3.org/39579 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-
Wouter Wolters authored
Resolves: #66969 Releases: master Change-Id: Icd0e6a2193da9868c1456061dd089ee293329afe Reviewed-on: http://review.typo3.org/39565 Reviewed-by:
Benjamin Kott <info@bk2k.info> Tested-by:
Benjamin Kott <info@bk2k.info> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de>
-
Sebastian Michaelsen authored
Re-read the constant values to be displayed in the form after a data update was performed. Resolves: #65824 Releases: master Change-Id: Ibfdd42b5fd6ce1103b6787594f9eaee60ea14223 Reviewed-on: http://review.typo3.org/39575 Reviewed-by:
Stephan Großberndt <stephan@grossberndt.de> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-
- May 15, 2015
-
-
Stephan Großberndt authored
* Make use of use-statements * fix typos * properly align comments * fix PHPDoc * fix bool signatures * remove unused variables * rename some cryptic variables * check for equality using === and !== where possible * use !empty() instead of count() Resolves: #66924 Releases: master Change-Id: I44675b3e8c8626591feaa017e53cae1426cd1da3 Reviewed-on: http://review.typo3.org/39508 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
Andreas Fernandez authored
Fix the import of moment.js in the RequireJS module used in the Language backend module. Resolves: #66931 Releases: master Change-Id: I8cf669f05d04c36496354a1b7133cc0bda4233cc Reviewed-on: http://review.typo3.org/39523 Reviewed-by:
Mathias Brodala <mbrodala@pagemachine.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Stephan Großberndt <stephan@grossberndt.de> Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net>
-
Benjamin Kott authored
Releases: master Resolves: #66971 Change-Id: Id0da50761c8197559a2298b321fe283a975f71a3 Reviewed-on: http://review.typo3.org/39566 Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Stephan Großberndt <stephan@grossberndt.de>
-
Stephan Großberndt authored
Use "Content-Type: image/jpeg" instead of invalid "image/jpg" derived from the file extension. The invalid Content-Type in combination with "X-Content-Type-Options: nosniff" leads to thumbnails not showing up in Internet Explorer. While at it also correct the case of "Etag" to "ETag". Resolves: #66913 Releases: master, 6.2 Change-Id: I9a31817e32e4e8b2b99b3008f8381608c5ac06e9 Reviewed-on: http://review.typo3.org/39482 Reviewed-by:
Frederic Gaus <frederic.gaus@flagbit.de> Reviewed-by:
Xavier Perseguers <xavier@typo3.org> Reviewed-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Tested-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de>
-
Benjamin Mack authored
This patch fixes the behaviour that a section index menu is not rendered, if the page whose sections should be shown has the flag "no in menu". Resolves: #50873 Releases: master Change-Id: Ibe1c0ac99d225ab4f9d315d576c39f477e03a3b7 Reviewed-on: http://review.typo3.org/24872 Reviewed-by:
DANIEL Rémy <dogawaf@no-log.org> Tested-by:
DANIEL Rémy <dogawaf@no-log.org> Reviewed-by:
Susanne Moog <typo3@susannemoog.de> Tested-by:
Susanne Moog <typo3@susannemoog.de> Reviewed-by:
Benjamin Mack <benni@typo3.org> Tested-by:
Benjamin Mack <benni@typo3.org>
-
Benjamin Kott authored
Releases: master Resolves: #66967 Change-Id: I81d74108e4ec4e98c239616ce1e880b3e03bf1d3 Reviewed-on: http://review.typo3.org/39564 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de>
-
Wouter Wolters authored
Resolves: #66964 Releases: master Change-Id: I08aa8539c1ba13cfd31a2a3902252877c4dd40ae Reviewed-on: http://review.typo3.org/39562 Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de> Reviewed-by:
Benjamin Kott <info@bk2k.info> Tested-by:
Benjamin Kott <info@bk2k.info> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-
Wouter Wolters authored
Resolves: #66965 Releases: master Change-Id: I9ee15614e785475ea6ff1656de861bf32b6548df Reviewed-on: http://review.typo3.org/39563 Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de> Reviewed-by:
Benjamin Kott <info@bk2k.info> Tested-by:
Benjamin Kott <info@bk2k.info> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-
Benjamin Kott authored
Releases: master Resolves: #66966 Change-Id: I18ee4c51727641d3b2ba8ce352c9622e65d31307 Reviewed-on: http://review.typo3.org/38289 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de>
-
Benjamin Kott authored
Releases: master Resolves: #66963 Change-Id: If2c346be8c19da2585a4758a8ee5dc6f4d7266ec Reviewed-on: http://review.typo3.org/39555 Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de>
-
Wouter Wolters authored
Resolves: #66271 Releases: master Change-Id: I6be3264173e69d6ebf36367ecb8947b7d699f978 Reviewed-on: http://review.typo3.org/39547 Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net> Reviewed-by:
Benjamin Kott <info@bk2k.info> Tested-by:
Benjamin Kott <info@bk2k.info>
-
Wouter Wolters authored
Resolves: #66960 Releases: master Change-Id: Ic18dc244f0a2ea0f50de91b2a75e85c26dd082a1 Reviewed-on: http://review.typo3.org/39548 Reviewed-by:
Benjamin Kott <info@bk2k.info> Tested-by:
Benjamin Kott <info@bk2k.info> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-
Wouter Wolters authored
Resolves: #66962 Releases: master Change-Id: Iff42da671e40f12c999afabca69ea5a3be007be3 Reviewed-on: http://review.typo3.org/39550 Reviewed-by:
Benjamin Kott <info@bk2k.info> Tested-by:
Benjamin Kott <info@bk2k.info> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-
Wouter Wolters authored
Resolves: #66961 Releases: master Change-Id: I787fffe94cfe8ecc369019e011b8dbaf75a8446b Reviewed-on: http://review.typo3.org/39549 Reviewed-by:
Benjamin Kott <info@bk2k.info> Tested-by:
Benjamin Kott <info@bk2k.info> Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net>
-
Benjamin Kott authored
Releases: master Resolves: #66958 Change-Id: I9916e8445126d8197348e9cc018337bf20719abd Reviewed-on: http://review.typo3.org/39546 Reviewed-by:
Benjamin Mack <benni@typo3.org> Tested-by:
Benjamin Mack <benni@typo3.org> Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net>
-
- May 14, 2015
-
-
Nicole Cordes authored
For installed extensions the (new) dependencies have to be resolved on extension update. If the extension isn't installed yet, the dependencies are fetched on update anyway, so this doesn't have to be tackled. Releases: master, 6.2 Resolves: #65484 Change-Id: I5c1e8622b3b15b6c25d7181c6cb1fc07f271437d Reviewed-on: http://review.typo3.org/37497 Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Reviewed-by:
Susanne Moog <typo3@susannemoog.de> Tested-by:
Susanne Moog <typo3@susannemoog.de> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-
Helmut Hummel authored
Before calling TYPO3 package methods, we must ensure we have the correct instance. All active composer packages are instance of the Flow package class which does not implement the methods isPartOfFactoryDefault or isPartOfMinimalUsableSystem Resolves: #66955 Related: #59147 Releases: master, 6.2 Change-Id: I5f08cce5e4b0329927d6a302d643f680822e4ad6 Reviewed-on: http://review.typo3.org/39543 Reviewed-by:
Nicole Cordes <typo3@cordes.co> Tested-by:
Nicole Cordes <typo3@cordes.co>
-
Wouter Wolters authored
If a backend uses https as protocol and the installation is a muti domain installation, the https protocol can lead to problems with previewing, when other domains don't support https. Fix this by allowing a protocol to be set in TCEMAIN.previewDomain Resolves: #62129 Releases: master,6.2 Change-Id: Ifffef57ff8a535aedb2141f0e3cbf01b1d8baac6 Reviewed-on: http://review.typo3.org/39521 Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de> Reviewed-by:
Stephan Großberndt <stephan@grossberndt.de> Reviewed-by:
Xavier Perseguers <xavier@typo3.org> Tested-by:
Xavier Perseguers <xavier@typo3.org> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-
- May 13, 2015
-
-
Markus Klein authored
If the first entry of the select box is chosen (option has an empty value), this selection is preserved now after saving the form. Additionally the empty value given a proper label to describe its functionality. The rendering is adjusted to use optgroup-elements now. Resolves: #66893 Releases: master Change-Id: Ic6a77086a86d353075dc771a23df74617697f01e Reviewed-on: http://review.typo3.org/39465 Reviewed-by:
Frederic Gaus <frederic.gaus@flagbit.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Xavier Perseguers <xavier@typo3.org> Tested-by:
Xavier Perseguers <xavier@typo3.org>
-
Andreas Fernandez authored
The signal "postProcessMirrorUrl" was moved while refactoring the "Language" backend module. Add a Breaking ReST manual to describe the change and the migration path. Resolves: #66930 Related: #62983 Releases: master Change-Id: I751a7c8c49500dd482fabe72c3b842118eb1a7a6 Reviewed-on: http://review.typo3.org/39522 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Xavier Perseguers <xavier@typo3.org> Tested-by:
Xavier Perseguers <xavier@typo3.org>
-
Andreas Fernandez authored
The slot "postProcessMirrorUrl" got lost while refactoring the "Language" backend module. It is re-integrated with this patch. Resolves: #66928 Related: #50467 Releases: master Change-Id: I7769d55434ba4724781b8e3ea01a25b1ba907089 Reviewed-on: http://review.typo3.org/39520 Reviewed-by:
Xavier Perseguers <xavier@typo3.org> Tested-by:
Xavier Perseguers <xavier@typo3.org> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de>
-
- May 12, 2015
-
-
Frank Nägler authored
This reverts commit 96957598. Reason for the revert is that initialize() of the abstract is no longer called, which takes care of "additionalAttributes" and "data-" attributes. The introduced getTagBuilder() method is not sufficient. So, basically the rule "no simple migration to compilable possible if the VH keeps local state" was violated here. Change-Id: Ie32bf34f3f230b4fa6c4dafa636ab5e18f400536 Releases: master Resolves: #66898 Reverts: #66751 Reviewed-on: http://review.typo3.org/39499 Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Frank Nägler <typo3@naegler.net> Tested-by:
Frank Nägler <typo3@naegler.net>
-
Frederic Gaus authored
Remove the wrong code suggestion "wrapItemAndSub" from GMENU in t3editor Change-Id: Ibcac99c49bc0d4a68e759b4878eb1c9493355eda Resolves: #25955 Releases: master, 6.2 Reviewed-on: http://review.typo3.org/36806 Reviewed-by:
Benjamin Mack <benni@typo3.org> Tested-by:
Benjamin Mack <benni@typo3.org> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de>
-
Christian Kuhn authored
With backport of issue #66473 a git submodule definition was accidently commited. The patch adds an additional travis-ci check to make the suite fail in case this happens again. Resolves: #66911 Releases: master, 6.2 Change-Id: I88d22ceea3c82a805db4e9e61cb1fdd8aec76383 Reviewed-on: http://review.typo3.org/39480 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Helmut Hummel <helmut.hummel@typo3.org> Tested-by:
Helmut Hummel <helmut.hummel@typo3.org>
-
Benjamin Mack authored
The option to disable the RTE configuration is in the Core and always active. The global option is always overridden when HTMLArea is installed. In the process of making the TYPO3 Core easier, and simpler the option can be removed. The option to disable the RTE on a per-user basis or per userTSconfig is still available. Resolves: #66903 Releases: master Change-Id: I14063cd31b3a8fc315ca861e4e8d996978535514 Reviewed-on: http://review.typo3.org/39472 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de>
-