- Aug 07, 2015
-
-
Markus Guenther authored
Replaces all IconUtility::getSpriteIcon calls for the icon actions-document-new with the new IconFactory. Resolves: #68806 Releases: master Change-Id: I6b69742494c2b16f499ce6367ccf5b689f958bad Reviewed-on: http://review.typo3.org/42360 Reviewed-by:
Frank Nägler <frank.naegler@typo3.org> Tested-by:
Frank Nägler <frank.naegler@typo3.org> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
Helmut Hummel authored
The routing introduced in #65493 double encodes the routes for no reasons Remove the double encoding and decoding. Also improve type hints in the Router class Resolves: #68828 Releases: master Change-Id: I2576b122396280f87f75cb73ac38932936391d66 Reviewed-on: http://review.typo3.org/42355 Reviewed-by:
Mathias Schreiber <mathias.schreiber@wmdb.de> Tested-by:
Mathias Schreiber <mathias.schreiber@wmdb.de> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org>
-
Markus Guenther authored
Replaces all IconUtility::getSpriteIcon calls for the icon actions-document-move with the new IconFactory. Change-Id: I52ae5ce611c138ff73fc009780b5ebc382eb41eb Resolves: #68817 Releases: master Reviewed-on: http://review.typo3.org/42346 Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Frank Nägler <frank.naegler@typo3.org> Tested-by:
Frank Nägler <frank.naegler@typo3.org>
-
Sascha Wilking authored
With adding a new entry to the shortcut list the new fancy dialog window stuff will open. but your choice cannot be "respected" because the adding action was already done before the dialog window is open. Resolves: #68824 Releases: master Change-Id: I13192f08b110226a563db200209e8d7ea0b3c600 Reviewed-on: http://review.typo3.org/42349 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
Wouter Wolters authored
Resolves: #68799 Releases: master Change-Id: I509f379841e5f4d9e01ee477699b198d17e1c9d7 Reviewed-on: http://review.typo3.org/42350 Reviewed-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Tested-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
Frank Nägler authored
Resolves: #68826 Releases: master Change-Id: Ic612b2c085c96c60dc3df0c76f36d42122441977 Reviewed-on: http://review.typo3.org/42352 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
Helmut Hummel authored
Update to latest refactored version of the class-alias-loader. This might be the last iteration before this package is moved to TYPO3 namespace. The alias loader has been refactored, cleaned up, moved to PSR-2. Documentation and tests have been added. Releases: master Resolves: #68811 Change-Id: Ice960936712b39f095d4398ce342947d09b79153 Reviewed-on: http://review.typo3.org/42336 Reviewed-by:
Helmut Hummel <helmut.hummel@typo3.org> Tested-by:
Helmut Hummel <helmut.hummel@typo3.org> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Benjamin Mack authored
A new Routing API is introduced in order to streamline the entrypoints to the TYPO3 Backend. Instead of using the term "module" for anything linkable in the backend, the term "routes" fits more. A "module" or an ajax call is a derivative of a route, which will build on this foundation. Routes can be registered via Configuration/Backend/Routes.php in any extension and are loaded solely on Backend requests. There are three new classes: - Route (a single route with a path and some options) - Router (API to match paths) - UriBuilder (Generates a Backend URI) This patch changes the entrypoint for login/logout to typo3/index.php?route=...&token=.... The main RequestHandler of all Backend modules detects where a route parameter is given and then resolves to a controller which inherits the ControllerInterface introduced with PSR-7, and checks for a valid token. See http://wiki.typo3.org/Blueprints/BackendRouting for implementation details. Resolves: #65493 Releases: master Change-Id: I39257df45b177793c5e8f57970b4088183b78c73 Reviewed-on: http://review.typo3.org/38095 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Susanne Moog <typo3@susannemoog.de> Tested-by:
Susanne Moog <typo3@susannemoog.de> Reviewed-by:
Daniel Maier <dani-maier@gmx.de> Tested-by:
Daniel Maier <dani-maier@gmx.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org>
-
Benjamin Mack authored
The magic quote functionality was removed with PHP 5.4.0. In previous PHP versions this was a switch to turn on/off adding slashes to the _GET and _POST superglobals. TYPO3 however was always adding slashes at every request and using GeneralUtility::_GP() etc. to remove the slashes again. As the PHP functionality is now removed, meaning there are no slashes added at all, TYPO3 can now use the non-slashed data inside the superglobals directly. Resolves: #68128 Releases: master Change-Id: I173732b62feeab55e13162a48aec52099f188f0d Reviewed-on: http://review.typo3.org/41206 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Susanne Moog <typo3@susannemoog.de> Tested-by:
Susanne Moog <typo3@susannemoog.de>
-
Manuel Selbach authored
Base constant TYPO3_URL_ORG defined in SystemEnvironmentBuilder::defineBaseConstants() was removed. Was for internal usage only and defined at 2 places in the core. Resolves: #68814 Releases: master Change-Id: I16e94f572ee6c1e84ff0f358c3092d7fe6ad93cd Reviewed-on: http://review.typo3.org/42345 Reviewed-by:
Daniel Maier <dani-maier@gmx.de> Tested-by:
Daniel Maier <dani-maier@gmx.de> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org>
-
Frank Nägler authored
Resolves: #68809 Releases: master Change-Id: Idb681b363ecfff686083db77c505696f363b17fa Reviewed-on: http://review.typo3.org/42331 Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
Georg Ringer authored
Fix cropping in the uri.image ViewHelper by moving the lines below the initialization of the image itself. Change-Id: Ia7d5efdf2d79e3d0448198bbae05fe9df46abc07 Resolves: #68719 Releases: master Reviewed-on: http://review.typo3.org/42337 Reviewed-by:
Josef Glatz <jousch@gmail.com> Tested-by:
Josef Glatz <jousch@gmail.com> Reviewed-by:
Frans Saris <franssaris@gmail.com> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Susanne Moog <typo3@susannemoog.de> Tested-by:
Susanne Moog <typo3@susannemoog.de>
-
Marc Bastian Heinrichs authored
When increasing max length of link fields the definition for db field link in table sys_file_reference changed to not NOT NULL. This needs to be adapted also in the impexp functional test data. Resolves: #68810 Related: #61944 Releases: master,6.2 Change-Id: I3c518ad865037365793a58c73ff9d1ec539410f2 Reviewed-on: http://review.typo3.org/42334 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org>
-
- Aug 06, 2015
-
-
Wouter Wolters authored
Resolves: #68807 Releases: master Change-Id: I018b1114a82146e2331a178f41c8bf48ee89cba4 Reviewed-on: http://review.typo3.org/42320 Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org>
-
Anja Leichsenring authored
Move last Important file to 7.4 Change-Id: If4dbb6f40a6b92ab114106ad0cc92820575a1af5 Resolves: #68752 Releases: master Reviewed-on: http://review.typo3.org/42330 Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Daniel Maier <dani-maier@gmx.de> Tested-by:
Daniel Maier <dani-maier@gmx.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
Daniel Maier authored
Official documentations have been updated according to rst-files mentioned here Resolves: #68752 Releases: master Change-Id: Ic9c4142807bae35b05d1d577c3b601ef70a181d6 Reviewed-on: http://review.typo3.org/42273 Reviewed-by:
Daniel Maier <dani-maier@gmx.de> Tested-by:
Daniel Maier <dani-maier@gmx.de> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
Daniel Goerz authored
Change-Id: If75c125743dfe3e7c77d11978b767b432e21a4b6 Releases: master Resolves: #30863 Reviewed-on: http://review.typo3.org/42201 Reviewed-by:
Sascha Wilking <sascha.wilking@hmmh.de> Tested-by:
Sascha Wilking <sascha.wilking@hmmh.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Andreas Fernandez authored
If a record with translations gets deleted, translations must vanish from the record list. Resolves: #68808 Releases: master Change-Id: Ic16bb256bdc6ee27e0c98a7e02f07abc1a85cd2b Reviewed-on: http://review.typo3.org/42328 Reviewed-by:
Daniel Goerz <ervaude@gmail.com> Tested-by:
Daniel Goerz <ervaude@gmail.com> Reviewed-by:
Susanne Moog <typo3@susannemoog.de> Tested-by:
Susanne Moog <typo3@susannemoog.de>
-
Daniel Goerz authored
If automaticInstallation is turned off in extension manager settings, dependency-checks are not done anymore (as no installation is done in that case). The tooltip in the "Get Extensions" list has also been adjusted: - "Import" if automaticInstallation is turned off - "Import and install" if automaticInstallation is turned on Change-Id: I9d1a9105c4f76baf94d74a69d2d425a949fb8bc7 Resolves: #66302 Releases: master Reviewed-on: http://review.typo3.org/42324 Reviewed-by:
Sascha Wilking <sascha.wilking@hmmh.de> Tested-by:
Sascha Wilking <sascha.wilking@hmmh.de> 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>
-
Wouter Wolters authored
Wrong example given with absRelPrefix instead of absRefPrefix. Resolves: #68796 Releases: master Change-Id: I9796c1ec3f7150cb85852cd3c1a7355f91af0430 Reviewed-on: http://review.typo3.org/42325 Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Benjamin Mack authored
The logic for outputting the default checks when calling cli_dispatch.phpsh is now using Symfony Console showing colored error messages when entering wrong cliKeys. The global variable $GLOBALS['MCONF']['name'] which was mis-used to transfer information between the CLI RequestHandler and the BackendUser (only when in CLI mode) for authentication was removed, as all the logic is now available inside the CliRequestHandler and can be resolved there already. The call "$BE_USER->checkCLIuser()" on every backend request is now removed and the method itself is now marked for deprecation, as the same functionality (except for using exceptions instead of fwrite() calls) is now in CliRequestHandler. The two constants TYPO3_cliKey and TYPO3_cliInclude have been marked internally as deprecated, as they are not in use anymore. Resolves: #68804 Releases: master Change-Id: Ia7730d43dd970fd33daeb78e538c8d4deb741d93 Reviewed-on: http://review.typo3.org/42295 Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Susanne Moog <typo3@susannemoog.de> Tested-by:
Susanne Moog <typo3@susannemoog.de>
-
Markus Guenther authored
Add fixtures for the DateTimeConverterTest, PersistentObjectConverterTest and the PropertyMapperTest. Change-Id: I6dc1214ea1eab6a566f1881f0f0dd3d209af261b Resolves: #68803 Related: #67665 Releases: master Reviewed-on: http://review.typo3.org/42326 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Markus Guenther authored
This adjusts the behavior of all Form ViewHelpers so that any submitted value is redisplayed even if a "value" argument has been specified. The issue with this, however, was that upon re-display of the form due to property-mapping or validation errors the value argument had precedence over the previously submitted value. This is a breaking change if you expect the previous behavior of form ViewHelpers always being pre-populated with the specified value attribute / bound object property even when re-displaying the form upon validation errors. Besides this change deprecates ``AbstractFormFieldViewHelper::getValue()``. If you call that method in your custom ViewHelpers you should use ``AbstractFormFieldViewHelper::getValueAttribute()`` instead and call ``AbstractFormFieldViewHelper::addAdditionalIdentityPropertiesIfNeeded()`` explicitly if the ViewHelper might be bound to (sub)entities. The default usage of getValueAttribute() not respect the submitted form data, because not every viewhelper need this feature. But you can enable the usage of the form data by setting the AbstractFormFieldViewHelper::respectSubmittedDataValue to TRUE. Change-Id: I05d9996df0a5594390ff7a005bbee7f2ceeb06bc Resolves: #66588 Related: #34186 Releases: master Reviewed-on: http://review.typo3.org/42298 Reviewed-by:
Sascha Wilking <sascha.wilking@hmmh.de> Tested-by:
Sascha Wilking <sascha.wilking@hmmh.de> Reviewed-by:
Susanne Moog <typo3@susannemoog.de> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
Markus Guenther authored
Adds fixture for TreeDataProviderWithConfigurationFixture and removes the ugly usage of eval() from TreeDataProviderFactoryTest in unit tests. Change-Id: I32c98ba353a0cc85488325f112ab2d67c7cfae1e Resolves: #67667 Related: #67468 Releases: master Reviewed-on: http://review.typo3.org/42321 Reviewed-by:
Sascha Wilking <sascha.wilking@hmmh.de> Tested-by:
Sascha Wilking <sascha.wilking@hmmh.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Frank Nägler authored
The logic for working with icons, icon sizes and icon overlays is now bundled into the new IconFactory class. The new IconFactory will replace the old icon skinning API step by step. All core icons will be registered directly in the IconRegistry class, third party extensions must use IconRegistry::registerIcon() to overwrite existing icons or add additional icons to the IconFactory. The IconFactory takes care of the correct icon and overlay sizes and the markup. Resolves: #68741 Releases: master Change-Id: I731e077290b58298c2c603eeb8961e8a3d4c62d3 Reviewed-on: http://review.typo3.org/41759 Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org>
-
Daniel Goerz authored
Prevent accessing an array key of a non-array. Resolves: #37952 Releases: master, 6.2 Change-Id: I42de4ae3fb2f697a1bdcde323cd33ba68018af28 Reviewed-on: http://review.typo3.org/42309 Reviewed-by:
Sascha Wilking <sascha.wilking@hmmh.de> Tested-by:
Sascha Wilking <sascha.wilking@hmmh.de> Reviewed-by:
Susanne Moog <typo3@susannemoog.de> Tested-by:
Susanne Moog <typo3@susannemoog.de>
-
Andreas Fernandez authored
Fix headline of ReST document. Resolves: #64535 Releases: master Change-Id: I624841144b68e8311e6b5034ff4c8660dcbe4666 Reviewed-on: http://review.typo3.org/42315 Reviewed-by:
Daniel Goerz <ervaude@gmail.com> Tested-by:
Daniel Goerz <ervaude@gmail.com> 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>
-
Christian Kuhn authored
BACK_PATH in Backend context is always empty string. The patch removes a couple of simple usages, mostly related to DocumentTemplate. Resolves: #68790 Releases: master Change-Id: Ic4897642abf216fbcec430051723bc4b412b321a Reviewed-on: http://review.typo3.org/42312 Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
Christian Kuhn authored
Fix a fatal and a typo. Resolves: #64535 Releases: master Change-Id: I4a04c6482675dbd07771a8e3e2f5659f9360cebe Reviewed-on: http://review.typo3.org/42314 Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Daniel Goerz <ervaude@gmail.com> Tested-by:
Daniel Goerz <ervaude@gmail.com> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Tested-by:
Andreas Fernandez <typo3@scripting-base.de>
-
Benjamin Serfhos authored
To determine the content that needs to be analysed in the linkvalidator, allow external hooks/signals to adjust the variables when needed. Resolves: #52217 Releases: master Change-Id: Ie887852f356beb9b5e95188d309276dffd2155b8 Reviewed-on: http://review.typo3.org/24276 Reviewed-by:
Jesper Paardekooper <jesper.paardekooper@gmail.com> Tested-by:
Jesper Paardekooper <jesper.paardekooper@gmail.com> Reviewed-by:
Frank Nägler <frank.naegler@typo3.org> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Wouter Wolters authored
Replace them with a <span> Resolves: #68025 Releases: master Change-Id: I8c138b0402a98eb10ceebb80681fa0e4ddbaa401 Reviewed-on: http://review.typo3.org/42313 Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Georg Ringer <georg.ringer@gmail.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Andreas Allacher authored
Add support for inline elements in combination with ['appearance']['useCombination'] to suppress the warning messages by using ['appearance']['suppressCombinationWarning'] or ['appearance']['overwriteCombinationWarningMessage'] to overwrite the default message. (allows LLL: values) Change-Id: I0765b9316cdfa9e09eb6eaf4e366c9470bfb7d75 Resolves: #64535 Releases: master Reviewed-on: http://review.typo3.org/36415 Reviewed-by:
Daniel Goerz <ervaude@gmail.com> Tested-by:
Daniel Goerz <ervaude@gmail.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Wouter Wolters authored
Because of performance reasons we replace the @inject annotations back to inject methods. Resolves: #68786 Related: #54605 Releases: master Change-Id: Ifc9960c9ca279c05b4120c806147e49c1084c8d5 Reviewed-on: http://review.typo3.org/42310 Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
Jo Hasenau authored
Resolves: #68606 Releases: master Change-Id: I22fbd200514324eca4a62b87d2a3018e87c8a85e Reviewed-on: http://review.typo3.org/42081 Reviewed-by:
Stefan Neufeind <typo3.neufeind@speedpartner.de> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Tomas Norre Mikkelsen <tomasnorre@gmail.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Sascha Wilking authored
The about module links to "http://typo3.org/license" (404) instead of "http://typo3.org/typo3-cms/overview/licenses/". The links are correct now. Resolves: #68787 Releases: master Change-Id: Id65f7bd028ad3b2ed555683c2b7f92cd2693670c Reviewed-on: http://review.typo3.org/42311 Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Daniel Goerz <ervaude@gmail.com> Tested-by:
Daniel Goerz <ervaude@gmail.com> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
Andreas Wolf authored
Change-Id: I3cf50c1ea27a36c86ca019d895da4472e78cdcf4 Releases: master Resolves: #68774 Reviewed-on: http://review.typo3.org/42294 Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org>
-
Benjamin Mack authored
When calling the := sortList() with a "numeric" modifier of the TypoScript parser with a string, the sort() method differs between PHP versions. In order to make this behaviour more strict, a check is done before the elements are sorted to only have numeric values in the list, otherwise an Exception is now thrown. As this changes behaviour, the test should be excluded for PHP7 in 6.2, the behaviour cannot be modified in 6.2 without possibly breaking the output of a Frontend site. Resolves: #65317 Releases: master Change-Id: Ife4f0de367398e6e5e35b6df9f1c0ea980597773 Reviewed-on: http://review.typo3.org/42112 Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Susanne Moog <typo3@susannemoog.de> Tested-by:
Susanne Moog <typo3@susannemoog.de>
-
Wouter Wolters authored
Resolves: #68354 Releases: master Change-Id: Ic40ea469c08b79678e98b339c2774609a14c01b0 Reviewed-on: http://review.typo3.org/42259 Reviewed-by:
Daniel Maier <dani-maier@gmx.de> Tested-by:
Daniel Maier <dani-maier@gmx.de> Reviewed-by:
Sascha Wilking <sascha.wilking@hmmh.de> Tested-by:
Sascha Wilking <sascha.wilking@hmmh.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Bart Dubelaar authored
When publishing a page, the treelist cache should be cleared. This is fixed by adding a condition that checks for a swap action in the existing class that hooks into DataHandler and listens for updates to pages to update the treelist cache. Change-Id: I0c01450efe9507dcef9f74af626a9ebf3cdc7d4c Resolves: #37952 Releases: master, 6.2 Reviewed-on: http://review.typo3.org/12195 Reviewed-by:
Andreas Wolf <andreas.wolf@typo3.org> Tested-by:
Andreas Wolf <andreas.wolf@typo3.org> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org>
-
Josef Glatz authored
The id must change to class since they are used multiple times on one page. Change-Id: Ic4eb03f894595ebdb170185a06c79d77da4edbae Releases: master Resolves: #68655 Reviewed-on: http://review.typo3.org/42150 Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Susanne Moog <typo3@susannemoog.de> Tested-by:
Susanne Moog <typo3@susannemoog.de>
-