- Dec 07, 2022
-
-
Benni Mack authored
Resolves: #99296 Releases: main, 11.5 Change-Id: I7c7182b107afe30def50bf10f73018df2c888958 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76938 Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de>
-
Nikita Hovratov authored
Resolves: #98897 Releases: main Change-Id: I5f4d861dc67a6858050564b5ec31a88383d01e2a Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76918 Tested-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by:
Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by:
Oliver Klee <typo3-coding@oliverklee.de>
-
Christian Kuhn authored
The point of these files is to hint IDE's for deprecation usages. The classes need an @deprecated annotation. Resolves: #99306 Related: #97217 Related: #97536 Releases: main Change-Id: I537149ee8ec520bb0a7284976c6c90fd8e5fdf8b Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76973 Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Torben Hansen authored
When saving a file in the filelist module, a flashmessage is shown containing the filename, bytes written and md5 hash of the file contents. From a user perspective, the `bytes` and `md5` information are useless and can be removed. Resolves: #99304 Releases: main Change-Id: I1f6dfe32663a2f8d2925ea9a6ff14dd01477f3ee Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76946 Reviewed-by:
Oliver Bartsch <bo@cedev.de> Tested-by:
Christian Kuhn <lolli@schwarzbu.ch> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Oliver Bartsch <bo@cedev.de> Reviewed-by:
Christian Kuhn <lolli@schwarzbu.ch>
-
Benni Mack authored
If a service is registered with ExtensionManagementUtility::addService(), that does not have a "os" flag, then a PHP 8 warning is raised (during loading). This change avoids this warning. Resolves: #99294 Releases: main, 11.5 Change-Id: Ie5427e1a48f32dccbf1c5618a199c9a4d55774d3 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76942 Reviewed-by:
Oliver Klee <typo3-coding@oliverklee.de> Tested-by:
Nikita Hovratov <nikita.h@live.de> Reviewed-by:
Nikita Hovratov <nikita.h@live.de> Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Stefan Bürk <stefan@buerk.tech>
-
Oliver Hader authored
When working with variable interpolation and similar scenarios, in most cases variables, constants, expressions, ... are embedded in a solid string and can only be identified and extracted by the corresponding "reader" or "parser". This string fragment splitter aims to introduce a simpler way for extracting and working with these embedded fragments. Example: $pattern = new StringFragmentPattern( StringFragmentSplitter::TYPE_EXPRESSION, '%[^%]+%' ); $splitter = new StringFragmentSplitter($pattern); $collection = $splitter->split( 'Hello %variable% World!' FLAG_UNMATCHED_AS_NULL ); // results in having // + StringFragment(type: 'raw', value: 'Hello ') // + StringFragment(type: 'expression', value: '%variable%') // + StringFragment(type: 'raw', value: ' World!') Resolves: #97553 Releases: main, 11.5, 10.4 Change-Id: Ie2b02a247ca884fa44ab7b3ba21214c8ee9bc457 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/74517 Tested-by:
Oliver Hader <oliver.hader@typo3.org> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Reviewed-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Reviewed-by:
Oliver Hader <oliver.hader@typo3.org>
-
- Dec 06, 2022
-
-
Chris Müller authored
Resolves: #99293 Releases: main Change-Id: I64fd454f3c8e24389aeda8312e1a68398afb4d02 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76941 Reviewed-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Benni Mack <benni@typo3.org>
-
Annett Jähnichen authored
In the "Page" module, translated content elements without a connection to the original language are highlighted, when a page is in "Translation" mode and `allowInconsistentLanguageHandling` is disabled. Additionally, a badge informing about the inconsistent language state is added. Resolves: #99210 Releases: main Change-Id: I690420bd6bba21bb84ebfac6f42848b09a1c85f1 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76845 Tested-by:
Georg Ringer <georg.ringer@gmail.com> Reviewed-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Andreas Fernandez <a.fernandez@scripting-base.de>
-
Achim Fritz authored
Cast decimals input arguments to integer before using them in number_format(). Resolves: #99283 Releases: main, 11.5 Change-Id: If0f49d644c99b212ffb7dd3a774e4dcba8baa2c7 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76936 Tested-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Oliver Klee <typo3-coding@oliverklee.de> Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
Benni Mack <benni@typo3.org>
-
Benni Mack authored
Change-Id: I206be78ca4e53366c8ded19ebbabdf6ec4047471 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76935 Tested-by:
core-ci <typo3@b13.com> Tested-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Benni Mack <benni@typo3.org>
-
Benni Mack authored
Change-Id: Ica979328b58e9d44ae8703a67ed7d5c9218afe3c Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76934 Tested-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Benni Mack <benni@typo3.org>
-
Benjamin Kott authored
Resolves: #99281 Releases: main, 11.5, 10.4 Change-Id: Ic65f08aa0bb67f97880d0ff5bb4c692fe7e6ffde Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76933 Tested-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Reviewed-by:
Andreas Fernandez <a.fernandez@scripting-base.de>
-
- Dec 05, 2022
-
-
Stefan Bürk authored
Changing the slugs of pages automatically creates redirects, if ext:redirects is installed and that feature has not been disabled. Detecting and handling this has been based on the `slug` value from the page record. There are some valid use cases which would benefit from the one or other good placed event. Another use case would be to create a redirect with a real build source path, thus respecting configured site route enhancers and decorators. Creating multiple redirects based on different arguments and typeNum may be another use case. This change acts as a preparation for upcoming features. Thus, it changes the passed through dataset in a way to transport valuable data. Handling and consuming methods have been adjusted. Pointing out possible places for events are added, which makes the need for the changes more obvious. Resolves: #99188 Releases: main Change-Id: Id928dc65bca27dc93164290dbdaba5e6723dbebb Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76816 Reviewed-by:
Nikita Hovratov <nikita.h@live.de> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Nikita Hovratov <nikita.h@live.de> Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Stefan Bürk <stefan@buerk.tech>
-
Benni Mack authored
<figure> is allowed in HTML5 outside of paragraphs, thus it should also be configured like that out-of-the-box See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/figure Since CKEditor5 is using <figure> around tables, and also might add a <figcaption> both variants are now enabled by default. Resolves: #99273 Releases: main, 11.5, 10.4 Change-Id: I9356cc13ccef764f475ba42cc47f43f7ecd624a1 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76923 Tested-by:
Frank Nägler <frank.naegler@typo3.com> Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
Benni Mack <benni@typo3.org> Tested-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Frank Nägler <frank.naegler@typo3.com>
-
Stefan Bürk authored
Native JSON field support along with a custom TCA user dbType `json` has been added as new features. This has been used to provide a more dynamic configuration in `ext:reactions` for the field variable config. Backend uses DataHandler to persist the data to the database, and checks if the retrieved value matches the to-persist value. At least MySQL seems to save provided array data by sorting it by key, thus the check before-after does not match, because of different key orderings. As it may be hard to ensure that beforehand, this change sorts the persisted and the provided array recursivly before comparing them. This ensures that at least the "same" data is written to the database. Resolves: #99279 Releases: main Change-Id: Icafd9485888011350d89cf6cc7094c03dbf14e40 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76927 Tested-by:
Frank Nägler <frank.naegler@typo3.com> Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Frank Nägler <frank.naegler@typo3.com> Tested-by:
Benni Mack <benni@typo3.org>
-
Benjamin Kott authored
- Use TYPO3.Icons - Make reactionTypes accessible to fluid - Allow type sorting and use correct field - Add contextmenu and icon to backend view Resolves: #99275 Releases: main Change-Id: Id68be5cdd9d2ffd9e4a137a773e442df214ee9df Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76925 Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Reviewed-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Tested-by:
Benni Mack <benni@typo3.org> Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Frank Nägler <frank.naegler@typo3.com> Tested-by:
Frank Nägler <frank.naegler@typo3.com>
-
Andreas Fernandez authored
Resolves: #99274 Releases: main Change-Id: Ib8e51718d1abf51cf74ebb5ab0d8693efab13cde Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76924 Reviewed-by:
Annett Jähnichen <mcmietz@web.de> Reviewed-by:
Oliver Klee <typo3-coding@oliverklee.de> Tested-by:
Annett Jähnichen <mcmietz@web.de> Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Tested-by:
Stefan Froemken <froemken@gmail.com> Reviewed-by:
Stefan Froemken <froemken@gmail.com> Tested-by:
Andreas Fernandez <a.fernandez@scripting-base.de>
-
Benjamin Kott authored
Executed commands: npm install @typo3/icons@^3.4.0 npm run build Resolves: #99272 Releases: main Change-Id: I915ff22b83e1f67a685e710e622dcc61cbe8b7b8 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76922 Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Reviewed-by:
Andreas Fernandez <a.fernandez@scripting-base.de>
-
Oliver Hader authored
see https://github.com/TYPO3/html-sanitizer/releases/tag/v2.1.0 composer req typo3/html-sanitizer:^2.1.0 composer req typo3/html-sanitizer:^2.1.0 \ -d typo3/sysext/core --no-update To use custom output rules, the Behavior object must be known in the Sanitizer, see https://github.com/TYPO3/html-sanitizer/pull/98 Resolves: #99271 Releases: main, 11.5, 10.4 Change-Id: I160f8b49284566afde87d07dde7a4fb69e3174c9 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76848 Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org>
-
Oliver Hader authored
Add new BeforeRequestTokenProcessedEvent, allowing to intercept or adjust a RequestToken during active user authentication process. Resolves: #99232 Related: #97305 Releases: main Change-Id: Iaa6cf7ca0ab2ab54fa1faa9a8fe6dcc76ef58ec9 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76868 Reviewed-by:
Andreas Fernandez <a.fernandez@scripting-base.de> Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org> Tested-by:
Oliver Hader <oliver.hader@typo3.org> Reviewed-by:
Oliver Hader <oliver.hader@typo3.org>
-
Annett Jähnichen authored
The 'SchedulerTask' module should use same buttons in docheader as in other modules, therefore use only 'Close', 'Save and Close', 'Save', 'New' and 'Delete' and in the correct context. Leave 'Save and Close' button for now, until there exist an state handling for closing the form with changes. Resolves: #99230 Releases: main Change-Id: I907f7b93d3fa09b98bc830fe232c12557438db41 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76867 Tested-by:
Annett Jähnichen <mcmietz@web.de> Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Annett Jähnichen <mcmietz@web.de> Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
Benni Mack <benni@typo3.org>
-
Oliver Bartsch authored
To improve the listing of mfa providers in the configuration module are possible language label keys now displayed, next to the resolved label. Resolves: #99246 Releases: main, 11.5 Change-Id: I978ff19f5c3299dff84d306a3c3b2c5ba0154ca2 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76881 Tested-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Oliver Bartsch <bo@cedev.de> Reviewed-by:
Oliver Bartsch <bo@cedev.de> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Georg Ringer <georg.ringer@gmail.com>
-
Oliver Bartsch authored
Resolves: #99245 Related: #98373 Releases: main Change-Id: I1c82965240149b88f9b1b21adfbc65814eca0fd0 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76880 Tested-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
Oliver Bartsch <bo@cedev.de> Reviewed-by:
Oliver Bartsch <bo@cedev.de> Tested-by:
Kevin Appelt <kevin.appelt@icloud.com> Tested-by:
Benni Mack <benni@typo3.org> Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Kevin Appelt <kevin.appelt@icloud.com> Reviewed-by:
Stefan Bürk <stefan@buerk.tech>
-
Georg Ringer authored
Avoid an exception if using PostgreSQL because there must not be a orderBy part if building a count query. PostgreSQL is here quite strict. Additionally, ensuring determinisic ordering is done a long the way as a side change. Resolves: #99257 Releases: main Change-Id: Icec779f0e0b2949c74f8c7fee704305d7af9f132 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76890 Tested-by:
Stefan Bürk <stefan@buerk.tech> Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
Georg Ringer <georg.ringer@gmail.com>
-
- Dec 04, 2022
-
-
Chris Müller authored
Resolves: #99266 Releases: main Change-Id: Ife02422e05d88ea8935c020ccf785aa0a014e9da Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76917 Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
core-ci <typo3@b13.com>
-
Torben Hansen authored
Note, that this patch also fixes some useless prophecy `->willReturn()` calls, which did not test something. Actually, it should have been checked, if the affected methods have been called with the given arguments. Resolves: #98975 Releases: main Change-Id: Iff326ed1e3211fb76078b758d4a3f58d5e353a03 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76915 Tested-by:
core-ci <typo3@b13.com> Tested-by:
Stefan Bürk <stefan@buerk.tech> Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Benni Mack <benni@typo3.org>
-
- Dec 03, 2022
-
-
Torben Hansen authored
Resolves: #98977 Releases: main Change-Id: Ib83b762e61483783695e04cdb2257f40ddf14b0a Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76914 Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Oliver Klee <typo3-coding@oliverklee.de> Tested-by:
Stefan Bürk <stefan@buerk.tech> Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Oliver Klee <typo3-coding@oliverklee.de>
-
Oliver Bartsch authored
This prevents an error triggered by accessing a possible uninitialized property as well as a possible TypeError in the newly introduced FileMount model. Resolves: #99254 Related: #99038 Releases: main Change-Id: I037ebd1322838f223ed19171b57118d039488936 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76888 Reviewed-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Benni Mack <benni@typo3.org> Tested-by:
Stefan Bürk <stefan@buerk.tech> Reviewed-by:
Oliver Klee <typo3-coding@oliverklee.de>
-
Tomas Norre Mikkelsen authored
This patch ensures that search term like Ärmel and Æble is also working. Currently the match didn't work if a uppercase special char was used. With the additional modifier, this is now working, and there will be matches on both lowercase and uppercase matching words. Resolves: #97986 Releases: main, 11.5, 10.4 Change-Id: If7ff1669ead57557964ed5372c4af749c316d7bf Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76874 Tested-by:
core-ci <typo3@b13.com> Tested-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Reviewed-by:
Benni Mack <benni@typo3.org>
-
Jochen Roth authored
Currently, there is only a GUI installer to set up a TYPO3 installation. This does not allow to automate the setup process. Therefore, a new CLI command named "setup" has been added. To provide the required information environment variables, CLI options or a step-by-step walk-through can be used. Resolves: #99221 Releases: main Change-Id: I88f44d5e0e33a1b22918fce2ecc8e58de6c4a071 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76857 Tested-by:
Stefan Bürk <stefan@buerk.tech> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Benni Mack <benni@typo3.org> Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Stefan Bürk <stefan@buerk.tech>
-
Annett Jähnichen authored
Buttons in button groups either had space between them or were glued together, because they used to be in the default button group. The buttons are now separated into different button groups to unify their positioning. Resolves: #99247 Releases: main Change-Id: I418a0d81538e4890e066ac643a9d140e21436b5f Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76882 Reviewed-by:
Annett Jähnichen <mcmietz@web.de> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Oliver Bartsch <bo@cedev.de> Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Oliver Bartsch <bo@cedev.de> Tested-by:
Benni Mack <benni@typo3.org> Tested-by:
Annett Jähnichen <mcmietz@web.de>
-
linawolf authored
This is mainly the scaffolding for future more extensive documentation. Based on the Changelog entry. Resolves https://github.com/TYPO3-Documentation/Changelog-To-Doc/issues/280 Resolves: #99251 Releases: main Change-Id: I0ce1bfb575f13bcfffb6bf2d67c8dad1c63a907f Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76887 Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Chris Müller <typo3@krue.ml> Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Chris Müller <typo3@krue.ml> Tested-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Benni Mack <benni@typo3.org>
-
Michael Schams authored
Following the commonly used spelling of the word "webhook", this change updates the headline of the Reactions backend module. Resolves: #99259 Releases: main Change-Id: I73ecf994f7221a70de801a7c3e1bf6a92a23f006 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76913 Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
core-ci <typo3@b13.com> Reviewed-by:
Oliver Klee <typo3-coding@oliverklee.de> Tested-by:
Oliver Klee <typo3-coding@oliverklee.de> Tested-by:
Benni Mack <benni@typo3.org> Tested-by:
Chris Müller <typo3@krue.ml> Reviewed-by:
Chris Müller <typo3@krue.ml>
-
Annett Jähnichen authored
In docheader buttons on the left side should have labels, therefore add label for actions-view-go-back in several modules. Resolves: #99229 Releases: main Change-Id: I509e2abc838c99a5dddf24718b8ccb5387813fe4 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76864 Tested-by:
Annett Jähnichen <mcmietz@web.de> Reviewed-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Annett Jähnichen <mcmietz@web.de> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Lina Wolf <112@linawolf.de> Reviewed-by:
Lina Wolf <112@linawolf.de> Tested-by:
Benni Mack <benni@typo3.org>
-
- Dec 02, 2022
-
-
Sebastian Iffland authored
With this change you're able to use TCA select item groups within Page TSconfig in TCEFORM section like TCEFORM.tx_myext_domain_model_a.record_type.addItems { 1 = item label 1.icon = icon-identifier 1.group = tx_myext_group } Releases: main Resolves: #99212 Change-Id: Id57b1cf820cc4f264f010f437c638bd3839920cf Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76844 Tested-by:
core-ci <typo3@b13.com> Tested-by:
Stefan Bürk <stefan@buerk.tech> Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Benni Mack <benni@typo3.org>
-
Peter Kraume authored
Resolves: #99256 Releases: main Change-Id: Id34d69f8c87b357cdd19cc59caca676511c459ca Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76889 Reviewed-by:
Georg Ringer <georg.ringer@gmail.com> Tested-by:
Chris Müller <typo3@krue.ml> Tested-by:
Stefan Bürk <stefan@buerk.tech> Reviewed-by:
Chris Müller <typo3@krue.ml> Reviewed-by:
Oliver Klee <typo3-coding@oliverklee.de> Tested-by:
Georg Ringer <georg.ringer@gmail.com> Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
Oliver Klee <typo3-coding@oliverklee.de> Tested-by:
core-ci <typo3@b13.com>
-
Oliver Bartsch authored
Labels are not suitable as keys for the listing because they are used as URL identifier and might contain whitespaces. Therefore, the keys are changed to the doktype only and a possible label is displayed within the configuration. Resolves: #99250 Releases: main Change-Id: I391604d3b7e54d70293c18e8693afded2a5a8d64 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76884 Tested-by:
core-ci <typo3@b13.com> Tested-by:
Oliver Bartsch <bo@cedev.de> Reviewed-by:
Benni Mack <benni@typo3.org> Tested-by:
Stefan Bürk <stefan@buerk.tech> Tested-by:
Benni Mack <benni@typo3.org> Reviewed-by:
Stefan Bürk <stefan@buerk.tech> Reviewed-by:
Oliver Bartsch <bo@cedev.de>
-
Oliver Bartsch authored
An administrator can create multiple reactions of the same reaction type. To make this clear, corresponding code parts are now renamed to use the "reaction type" term consistently. Resolves: #99252 Related: #98373 Releases: main Change-Id: Ib2111ae193f4a340152c1692d52861f199e69919 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76885 Reviewed-by:
Oliver Bartsch <bo@cedev.de> Reviewed-by:
Oliver Hader <oliver.hader@typo3.org> Tested-by:
core-ci <typo3@b13.com> Tested-by:
Oliver Hader <oliver.hader@typo3.org> Tested-by:
Benni Mack <benni@typo3.org> Tested-by:
Oliver Bartsch <bo@cedev.de> Reviewed-by:
Benni Mack <benni@typo3.org>
-
Nikita Hovratov authored
Resolves: #99253 Related: #98760 Releases: main Change-Id: I1cdfd3902dad70bff2eeadfcd1a0eae2d8a6b644 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76886 Tested-by:
core-ci <typo3@b13.com> Tested-by:
Stefan Bürk <stefan@buerk.tech> Reviewed-by:
Stefan Bürk <stefan@buerk.tech>
-
Nikita Hovratov authored
Resolves: #99249 Related: #98892 Releases: main Change-Id: Iae2460a894bb3270272e39bfb9b75a83a4deeb78 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76883 Tested-by:
core-ci <typo3@b13.com> Tested-by:
Stefan Bürk <stefan@buerk.tech> Reviewed-by:
Stefan Bürk <stefan@buerk.tech>
-