- Jun 09, 2017
-
-
Sascha Egerer authored
The default database value for native fields of type datetime must not be 0 but NULL. Resolves: #79304 Releases: master, 8.7 Change-Id: I823a85be2a01ccd8df4997ab2969b2c95ed78cd1 Reviewed-on: https://review.typo3.org/51296 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
- Jun 08, 2017
-
-
Jasmina Liessmann authored
Since using flexbox for displaying boxes at the same height in module 'About' the jQuery plugin 'matchHeight' is not needed anymore. Resolves: #81493 Releases: master Change-Id: I1f593111804cd34f66beee472cbdd4ac258fc0ab Reviewed-on: https://review.typo3.org/53149 Tested-by:
TYPO3com <no-reply@typo3.com> 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>
-
- Jun 07, 2017
-
-
Josef Glatz authored
Remove the last LESS file after the switch to SCSS. Resolves: #81509 Releases: master Change-Id: I24138144497c60e018b5612bce3624b631ac6d0b Reviewed-on: https://review.typo3.org/53165 Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Georg Ringer <georg.ringer@gmail.com>
-
Helmut Hummel authored
While cleanup css with #79998 the background was accidentally removed. Add it again to make the selected crop area more prominent again. Resolves: #81503 Releases: master, 8.7 Change-Id: I197d6c4bb9b7be7d2b9a443ce1b60ab3b4d82bcd Reviewed-on: https://review.typo3.org/53156 Reviewed-by:
Jasmina Ließmann <code@frauliessmann.de> Tested-by:
Jasmina Ließmann <code@frauliessmann.de> Reviewed-by:
Robert Vock <robert.vock@4wdmedia.de> Tested-by:
Robert Vock <robert.vock@4wdmedia.de> Reviewed-by:
Helmut Hummel <typo3@helhum.io> Tested-by:
Helmut Hummel <typo3@helhum.io> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Georg Ringer <georg.ringer@gmail.com>
-
Christian Kuhn authored
The patch adds fixture comparison files for mssql platform on ext:impexp functional tests. Change-Id: I2ff9048b9f6395c555f72a68b16684e9bf22de84 Resolves: #81501 Releases: master, 8.7 Reviewed-on: https://review.typo3.org/53153 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Jan Helke <typo3@helke.de> Tested-by:
Jan Helke <typo3@helke.de> Reviewed-by:
Frank Naegler <frank.naegler@typo3.org> Tested-by:
Frank Naegler <frank.naegler@typo3.org>
-
Christian Kuhn authored
MS SQL server is more picky about types than postgres and mysql. This is especially true for LOB columns - even empty strings need a proper cast and specific handling. Various parts of the core deal with arbitrary tables and don't know if a column is int, text or lob, or whatever. Those are blindly updated / inserted, resulting in mssql saying "no". Solution is to fetch column schema and to set proper types based on that schema. This is expensive. We will have to refactor that again, and we will probably end up with a (cache?) entry that knows the entire table schema of an instance. Solving that in a good way would also fix various mysql strict issues we still have in the core. However, this needs more work. Goal of the current patch is to bring mssql to a working state. The solution must be seen as hacky, but is restricted to that platform only and can be relaxed and improved as soon as we take the next steps with schema handling in the TYPO3 core. Change-Id: I9b582a9bde7461cfbcc2414192518fb7b7b1341d Resolves: #81498 Releases: master, 8.7 Reviewed-on: https://review.typo3.org/53150 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Jan Helke <typo3@helke.de> Tested-by:
Jan Helke <typo3@helke.de> Reviewed-by:
Frank Naegler <frank.naegler@typo3.org> Tested-by:
Frank Naegler <frank.naegler@typo3.org>
-
Christian Kuhn authored
mssql does not support FIND_IN_SET(). The patch adds a solution based on LIKE. Since the query fiddling in this area is a bit tricky, this area is now supported by a bunch of functional tests. A postgres bug those new functional tests reveal is fixed along the way. Change-Id: I5e94ad8df7a37a680b457eff1b5b16a0c14dba39 Resolves: #81488 Releases: master, 8.7 Reviewed-on: https://review.typo3.org/53141 Reviewed-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Tested-by:
Morton Jonuschat <m.jonuschat@mojocode.de> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org>
-
- Jun 06, 2017
-
-
Morton Jonuschat authored
Reusing the connection object for the sys_refindex table can fail if the table that is being indexed is actually on another connection. Select the proper connection before attempting to execute the query. Change-Id: I4c031428f7405031aea6ef652c8b6f488f921228 Resolves: #81049 Releases: master, 8.7 Reviewed-on: https://review.typo3.org/53131 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Andreas Fernandez <typo3@scripting-base.de> Reviewed-by:
Henrik Elsner <helsner@dfau.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Markus Klein authored
Issue correct error message if the renderType (or the type) is unknown. The message now includes also the renderType, if specified. Releases: master, 8.7, 7.6 Resolves: #81485 Change-Id: I44e736a546fc27733a8c8df14089dd25dc172f2b Reviewed-on: https://review.typo3.org/53139 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by:
Johannes Kasberger <johannes.kasberger@reelworx.at> Tested-by:
Johannes Kasberger <johannes.kasberger@reelworx.at> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Martin Bless authored
Resolves: #81477 Releases: master, 8.7, 7.6 Change-Id: Ie98fcc81c386fe5704c669f36220827f7cfbd2e5 Reviewed-on: https://review.typo3.org/53133 Reviewed-by:
Markus Klein <markus.klein@typo3.org> Tested-by:
Markus Klein <markus.klein@typo3.org> Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Georg Ringer <georg.ringer@gmail.com>
-
- Jun 05, 2017
-
-
Wouter Wolters authored
The wrong variable is used in a hook exception. Use the correct variable to prevent fatal errors. Resolves: #81472 Releases: master,8.7 Change-Id: I8cf84c2ac84c09bbeecc2111eb6128fdc71be3c7 Reviewed-on: https://review.typo3.org/53122 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Frank Naegler <frank.naegler@typo3.org> Tested-by:
Frank Naegler <frank.naegler@typo3.org>
-
Michael Oehlhof authored
Resolves: #78355 Releases: master Change-Id: Ibf4966f312124bdab38701e014cd9fd74f768adf Reviewed-on: https://review.typo3.org/51044 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Gianluigi Martino <gmartino27@gmail.com> Tested-by:
Gianluigi Martino <gmartino27@gmail.com> Tested-by:
Riccardo De Contardi <erredeco@gmail.com> Reviewed-by:
Frank Naegler <frank.naegler@typo3.org> Tested-by:
Frank Naegler <frank.naegler@typo3.org>
-
Elmar Hinz authored
Releases: master Resolves: #81280 Change-Id: Ib67d57b69e9d5cd4f46cd8c7201107ec5945d64c Reviewed-on: https://review.typo3.org/52963 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by:
Frank Naegler <frank.naegler@typo3.org> Tested-by:
Frank Naegler <frank.naegler@typo3.org>
-
Jasmina Liessmann authored
Page titles are used within several table views. This patch avoids page titles from being displayed outside their columns. Resolves: #81456 Releases: master, 8.7 Change-Id: I38d773ff8b3300027ef815b4f792cc45b0a66aff Reviewed-on: https://review.typo3.org/53106 Reviewed-by:
Nicole Cordes <typo3@cordes.co> Tested-by:
Nicole Cordes <typo3@cordes.co> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Frank Naegler <frank.naegler@typo3.org> Tested-by:
Frank Naegler <frank.naegler@typo3.org>
-
Jasmina Liessmann authored
Move general CSH for 'Pagetree overview' next to form fields. Resolves: #81453 Releases: master, 8.7 Change-Id: I8e5c3a4257d569277f837bee2c641cd1a95dd9a5 Reviewed-on: https://review.typo3.org/53086 Reviewed-by:
Jasmina Ließmann <code@frauliessmann.de> Tested-by:
Jasmina Ließmann <code@frauliessmann.de> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Nicole Cordes <typo3@cordes.co> Tested-by:
Nicole Cordes <typo3@cordes.co> Tested-by:
Riccardo De Contardi <erredeco@gmail.com> Reviewed-by:
Frank Naegler <frank.naegler@typo3.org> Tested-by:
Frank Naegler <frank.naegler@typo3.org>
-
Johannes Goslar authored
Resolves: #81416 Releases: master, 8.7 Change-Id: If7e3893baa73c1392f3317d5b871be51eeab41b5 Reviewed-on: https://review.typo3.org/53021 Reviewed-by:
Oliver Hader <oliver.hader@typo3.org> Tested-by:
Oliver Hader <oliver.hader@typo3.org> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Frank Naegler <frank.naegler@typo3.org> Tested-by:
Frank Naegler <frank.naegler@typo3.org>
-
Nicole Cordes authored
The ImageCropUpdater throws an exception if a non-existing file is tried to be processed. This happens because deleted rows are updated. The patch checks the returned file object before further processing is executed. Resolves: #81470 Releases: master, 8.7 Change-Id: I488994b1ad842e28d928f3b4a2db1c8c007afe3c Reviewed-on: https://review.typo3.org/53120 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Helmut Hummel <typo3@helhum.io> Tested-by:
Helmut Hummel <typo3@helhum.io> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
Wouter Wolters <typo3@wouterwolters.nl>
-
Christian Kuhn authored
Microsoft sql server field & columns quotes quotes identifiers as [anIdentifier] in comparison to mysql and postgres which quote with a character that is identical left and right. The patch adapts some quoting methods to cope with that and adapts a return type hint where the mssql doctrine driver returns more precise value types than other platform drivers. Change-Id: I8db6109d5a92ff43f3503f245c5d131b96201096 Resolves: #79297 Releases: master, 8.7 Reviewed-on: https://review.typo3.org/53115 Tested-by:
TYPO3com <no-reply@typo3.com> 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>
-
- Jun 04, 2017
-
-
Claus Due authored
This patch avoids calling a non-existing method and instead calls upon TemplatePaths to resolve the template file - which is closer to the original behavior. Change-Id: Ib2669056e59bf1a6524e35e02e1f677226a5efa5 Resolves: #79073 Releases: master, 8.7 Reviewed-on: https://review.typo3.org/51021 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Markus Sommer <markussom@posteo.de> Tested-by:
Markus Sommer <markussom@posteo.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
maikh authored
Add card component. Rebuild "about" start page with new card component Change-Id: I059fae38c96455dc08ff143bd68da3f05fb63fa6 Resolves: #81462 Releases: master Reviewed-on: https://review.typo3.org/53099 Reviewed-by:
Jo Hasenau <info@cybercraft.de> Tested-by:
Jo Hasenau <info@cybercraft.de> Reviewed-by:
Benjamin Kott <benjamin.kott@outlook.com> Tested-by:
Benjamin Kott <benjamin.kott@outlook.com> Reviewed-by:
Jasmina Ließmann <code@frauliessmann.de> Tested-by:
Jasmina Ließmann <code@frauliessmann.de>
-
Jasmina Liessmann authored
Fix height of the modal content to avoid misbehavior in IE11. Resolves: #81232 Releases: master, 8.7 Change-Id: I302915e1efcd2040f78db8052dc2e09e06f1dfe4 Reviewed-on: https://review.typo3.org/53023 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Benjamin Kott <benjamin.kott@outlook.com> Tested-by:
Benjamin Kott <benjamin.kott@outlook.com> Reviewed-by:
Markus Sommer <markussom@posteo.de> Tested-by:
Markus Sommer <markussom@posteo.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Claus Due authored
Due to the sequence of methods being called from this method, it is necessary to sort TS-configured paths right when they are resolved instead of passing the unsorted array further down. Patch also sorts methods protected below public; true diff is one line. Toggle this line between before/after and run the test to see the problem demonstrated. See issue description for a more detailed reasoning. Change-Id: I0317c4ee683c2fac2c7def7c6d79f947afc4b078 Resolves: #81340 Releases: master, 8.7 Reviewed-on: https://review.typo3.org/52938 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Markus Sommer <markussom@posteo.de> Tested-by:
Markus Sommer <markussom@posteo.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
maikh authored
Check files if they are image files before thumbnail generation. Change-Id: I7dae2ccbb5ab93e582d21efe8f7d29cf7006a1c3 Resolves: #81147 Releases: master, 8.7 Reviewed-on: https://review.typo3.org/53107 Reviewed-by:
Jo Hasenau <info@cybercraft.de> Tested-by:
Jo Hasenau <info@cybercraft.de> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Daniel Windloff authored
- actions-add Link to one new record or a wizard to select the type of the record - actions-page-new Link to one new page record - actions-document-new Link to create multiple new records (EditDocumentController) Resolves: #81428 Releases: master Change-Id: Ic95a4b3b7727e96a2da818633d03cba7a1c7bde7 Reviewed-on: https://review.typo3.org/53105 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Mona Muzaffar <mona.muzaffar@gmx.de> Reviewed-by:
Markus Sommer <markussom@posteo.de> Tested-by:
Markus Sommer <markussom@posteo.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
- Jun 03, 2017
-
-
Christian Kuhn authored
A couple of straight patches withis functional test cases for mssql compatibility: * Set identity where records with uids are inserted * Quote LOB fields correctly * A change to cope with [] encapsulated field and table names Change-Id: I103021550fbe5c62f15e82454c766d67fc0dc63f Resolves: #81465 Releases: master, 8.7 Reviewed-on: https://review.typo3.org/53102 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Mona Muzaffar <mona.muzaffar@gmx.de> Tested-by:
Mona Muzaffar <mona.muzaffar@gmx.de> Reviewed-by:
Markus Sommer <markussom@posteo.de> Tested-by:
Markus Sommer <markussom@posteo.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Christian Kuhn authored
The extension containing legacy $GLOBALS['TYPO3_DB'] has been moved to github at https://github.com/FriendsOfTYPO3/typo3db_legacy and is available as TER extension and now dropped from core. An upgrade wizard is added to dowload and install the extension if needed. Change-Id: Id99794844e39632a3451e19c7a7d55d47bc3118c Resolves: #81023 Releases: master Reviewed-on: https://review.typo3.org/52612 Reviewed-by:
Johannes Goslar <jogo@kronberger-spiele.de> Tested-by:
Johannes Goslar <jogo@kronberger-spiele.de> Reviewed-by:
Markus Sommer <markussom@posteo.de> Tested-by:
Markus Sommer <markussom@posteo.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
TYPO3com <no-reply@typo3.com>
-
Jigal van Hemert authored
In the Page module with textmedia content elements the descriptions are shown below the thumbnails of linked media. If there is no description an empty line is now suppressed. Resolves: #81408 Releases: master, 8.7, 7.6 Change-Id: I9f342908f179550bcf2156328117c464bb8c672f Reviewed-on: https://review.typo3.org/53092 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Jo Hasenau <info@cybercraft.de> Tested-by:
Jo Hasenau <info@cybercraft.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Johannes Goslar authored
Resolves: #81459 Releases: master, 8.7 Change-Id: I213c8d52d8c5ed0d027c1c6e7d01e9bec49ce506 Reviewed-on: https://review.typo3.org/53089 Reviewed-by:
Markus Sommer <markussom@posteo.de> Tested-by:
Markus Sommer <markussom@posteo.de> Reviewed-by:
Johannes Goslar <jogo@kronberger-spiele.de> Tested-by:
Johannes Goslar <jogo@kronberger-spiele.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Johannes Goslar authored
Resolves: #81448 Resolves: #81449 Resolves: #81450 Releases: master, 8.7 Change-Id: Ic87b62f09d607e7f37491ebec2ea4619bc1aff70 Reviewed-on: https://review.typo3.org/53078 Reviewed-by:
Oliver Hader <oliver.hader@typo3.org> Tested-by:
Oliver Hader <oliver.hader@typo3.org> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Markus Sommer <markussom@posteo.de> Tested-by:
Markus Sommer <markussom@posteo.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Markus Sommer authored
With changing the input type=image to input type=submit, the x/y values are no longer transferred the EditDocumentController checked for, and content is no longer saved. Adapt the controller code for the new parameters. Resolves: #76649 Releases: 8.7, master Change-Id: I921b92f1086e142592fc84083656c4baecd43aa7 Reviewed-on: https://review.typo3.org/52730 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Susanne Moog <susanne.moog@typo3.org> Tested-by:
Susanne Moog <susanne.moog@typo3.org>
-
Markus Sommer authored
Show hidden records in the subgroup list of be_group records, too. Change-Id: Iaca85f22bdf8a4c308b59fd37bd75b4a913614a0 Resolves: #81452 Releases: master, 8.7 Reviewed-on: https://review.typo3.org/53085 Reviewed-by:
Jasmina Ließmann <code@frauliessmann.de> Tested-by:
Jasmina Ließmann <code@frauliessmann.de> Reviewed-by:
Marco Christian Krenn <krenn@webconsulting.at> Tested-by:
Marco Christian Krenn <krenn@webconsulting.at> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Cybercraft authored
Add missing RST file for new feature Resolves: #67884 Releases: master Change-Id: I9d7ffa4203cbcec5dac2b5359f418faeaf5462fa Reviewed-on: https://review.typo3.org/53082 Reviewed-by:
Susanne Moog <susanne.moog@typo3.org> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Marco Christian Krenn authored
CSH buttons on bottom of page are removed, text on the top CSH button is rewriten. Resolves: #81454 Releases: master Change-Id: Ie04f8eab19eef996b258808986c05317535b72dc Reviewed-on: https://review.typo3.org/53079 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Markus Sommer <markussom@posteo.de> Tested-by:
Markus Sommer <markussom@posteo.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Johannes Goslar authored
Resolves: #81445 Releases: master, 8.7 Change-Id: Ie88eb7ce2fdaf7429377062e86996847f7e9bfa9 Reviewed-on: https://review.typo3.org/53063 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Susanne Moog <susanne.moog@typo3.org> Tested-by:
Susanne Moog <susanne.moog@typo3.org>
-
Jasmina Liessmann authored
Use absolute position for hints of remaining characters to prevent form fields from being moved down. Resolves: #81447 Related: #77069 Releases: master, 8.7 Change-Id: I8df8cd25955a6ed44bfa5ee727f439856960167f Reviewed-on: https://review.typo3.org/53069 Reviewed-by:
Mona Muzaffar <mona.muzaffar@gmx.de> Tested-by:
Mona Muzaffar <mona.muzaffar@gmx.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Markus Sommer authored
Change-Id: I828ed0219033ea8f5ed075eaa4d72c84cdf37414 Resolves: #53685 Releases: master Reviewed-on: https://review.typo3.org/53076 Reviewed-by:
Jasmina Ließmann <code@frauliessmann.de> Tested-by:
Jasmina Ließmann <code@frauliessmann.de> Reviewed-by:
Wouter Wolters <typo3@wouterwolters.nl> Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Daniel Windloff authored
Usage: - actions-view-page Preview a single page record - actions-view Preview a single record (except pages) - actions-document-view Preview images or documents. (Preview multiple records) Resolves: #81429 Releases: master Change-Id: I7a537b8b171981bcfe3b55d4d4156192f660ba3c Reviewed-on: https://review.typo3.org/53057 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Mona Muzaffar <mona.muzaffar@gmx.de> Tested-by:
Mona Muzaffar <mona.muzaffar@gmx.de> Reviewed-by:
Susanne Moog <susanne.moog@typo3.org> Tested-by:
Susanne Moog <susanne.moog@typo3.org>
-
Cybercraft authored
Resolves: #67884 Releases: master Change-Id: I7c14886e5dc1c81d7d816e5f2eb5d36afb8cdbf9 Reviewed-on: https://review.typo3.org/53040 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Mona Muzaffar <mona.muzaffar@gmx.de> Tested-by:
Mona Muzaffar <mona.muzaffar@gmx.de> Tested-by:
Riccardo De Contardi <erredeco@gmail.com> Tested-by:
Jasmina Ließmann <code@frauliessmann.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Daniel Windloff authored
Usage: - actions-add-placeholder Link to wizards / controller where the selection between serveral kinds of new records can be made - actions-add Link to creation form for all records except pages (EditDocumentController) -actions-page-new Link to creation form for page record -actions-document-new Link to create multiple new records Resolves: #81428 Releases: master Change-Id: I10ced54f5cd8c09c095a699fd0994a9dd5fa0f05 Reviewed-on: https://review.typo3.org/53073 Tested-by:
TYPO3com <no-reply@typo3.com> Reviewed-by:
Mona Muzaffar <mona.muzaffar@gmx.de> Tested-by:
Mona Muzaffar <mona.muzaffar@gmx.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Oliver Hader authored
Opening CSH help popups from another popup (e.g. add/edit wizard) fails since the resolved CSH URI is not valid. Resolves: #80665 Releases: master, 8.7 Change-Id: I16f4dcd037cdb7ab210c083272d0941c979da205 Reviewed-on: https://review.typo3.org/53065 Tested-by:
Mona Muzaffar <mona.muzaffar@gmx.de> Tested-by:
Riccardo De Contardi <erredeco@gmail.com> Tested-by:
TYPO3com <no-reply@typo3.com> Tested-by:
Jasmina Ließmann <code@frauliessmann.de> Reviewed-by:
Mona Muzaffar <mona.muzaffar@gmx.de> Reviewed-by:
Susanne Moog <susanne.moog@typo3.org> Tested-by:
Susanne Moog <susanne.moog@typo3.org>
-